diff options
author | Martin Baulig <martin@home-of-linux.org> | 1998-06-08 00:12:50 +0000 |
---|---|---|
committer | Martin Baulig <martin@src.gnome.org> | 1998-06-08 00:12:50 +0000 |
commit | 8fa4243225708945637ab1d4fb868e42d9f9ba6a (patch) | |
tree | 6f9d711cf3cd3726d5903b76e7d49abc6ae8da27 /support | |
parent | dc380112eeed5fa0edcf98191ea3edff04a5a819 (diff) | |
download | shared-mime-info-8fa4243225708945637ab1d4fb868e42d9f9ba6a.tar.gz |
When cross-compiling, this is build using `$(build_CC)' because it needs
1998-06-08 Martin Baulig <martin@home-of-linux.org>
* Makefile.am (gnomesupport-h): When cross-compiling, this
is build using `$(build_CC)' because it needs to run on the
build system. Look at gnome-libs/configure.in to see how to
get `build_CC'.
svn path=/trunk/; revision=242
Diffstat (limited to 'support')
-rw-r--r-- | support/ChangeLog | 7 | ||||
-rw-r--r-- | support/Makefile.am | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/support/ChangeLog b/support/ChangeLog index 3b33b8c7..7c6bb696 100644 --- a/support/ChangeLog +++ b/support/ChangeLog @@ -1,3 +1,10 @@ +1998-06-08 Martin Baulig <martin@home-of-linux.org> + + * Makefile.am (gnomesupport-h): When cross-compiling, this + is build using `$(build_CC)' because it needs to run on the + build system. Look at gnome-libs/configure.in to see how to + get `build_CC'. + Thu May 21 21:21:12 1998 Tom Tromey <tromey@cygnus.com> * gnome-argp.h: Unconditionally declare program_invocation_name diff --git a/support/Makefile.am b/support/Makefile.am index 78639bc7..394492db 100644 --- a/support/Makefile.am +++ b/support/Makefile.am @@ -5,6 +5,10 @@ supportincludedir = $(pkglibdir)/include if BUILD_GNOME_SUPPORT INCLUDES = -D_GNU_SOURCE +if CROSS_COMPILING +CC = $(build_CC) +endif + lib_LTLIBRARIES = libgnomesupport.la supportinclude_HEADERS = gnome-argp.h getopt.h long-options.h argp.h |