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 /examples/Makefile.am | |
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 'examples/Makefile.am')
-rw-r--r-- | examples/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index dc60ea9b..d1834f04 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -49,7 +49,10 @@ pangoft2topgm_LDADD = \ bin_PROGRAMS = $(viewer_programs) noinst_PROGRAMS = $(ft2_programs) +if CROSS_COMPILING +else all-local: pango.modules +endif pango.modules: if find ../modules -name '*.so' | grep 'so' > /dev/null ; then \ |