diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-09-27 22:01:55 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-09-27 22:01:55 +0000 |
commit | a031b12aacf2a586447b39f25a8f0e6ae5944c4d (patch) | |
tree | 224cab44744244746ed8579c7fddbb34bddc0c59 /configure.in | |
parent | ac5a399de9c2bb3ecd3244f82ee614240e164f5f (diff) | |
download | pango-a031b12aacf2a586447b39f25a8f0e6ae5944c4d.tar.gz |
(Based on GTK+ patch by J. Ali Harlow in #87774)
Fri Sep 27 17:50:51 2002 Owen Taylor <otaylor@redhat.com>
(Based on GTK+ patch by J. Ali Harlow in #87774)
* configure.in: Add CROSS_COMPILING conditional.
* modules/Makefile.am (install-data-local): Don't
generate pango.modules when installing into a DESTDIR
or cross-compiling.
* examples/Makefile.am (all-local): Don't generate
pango.modules when cross-compiling.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 1ea9c779..a080d90f 100644 --- a/configure.in +++ b/configure.in @@ -118,6 +118,8 @@ changequote([,])dnl AC_ARG_ENABLE(rebuilds, [ --disable-rebuilds disable all source autogeneration rules],,enable_rebuilds=yes) +AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes) + # define a MAINT-like variable REBUILD which is set if Perl # is found, so autogenerated sources can be rebuilt |