diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-01-16 10:10:23 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-01-16 10:10:23 +0000 |
commit | 6cc141fdd95ba7b2623f176e7a4321524d600641 (patch) | |
tree | b8acaef91f4886ca12bc8fffbf12f9a600fa878e /examples | |
parent | 240877fc00047a2898f8f8d338684c2e4e087b90 (diff) | |
download | pango-6cc141fdd95ba7b2623f176e7a4321524d600641.tar.gz |
Fixes bug #71414, allowing to disable building/installing modules.
2006-01-16 Behdad Esfahbod <behdad@gnome.org>
Fixes bug #71414, allowing to disable building/installing modules.
* configure.in: Add support for --with-dynamic-modules.
* */Makefile.am: Adapt to the above change.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index 71c9b250..7ab1fe50 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -103,9 +103,9 @@ pango.modules: $(top_builddir)/pango/pango-querymodules if find ../modules -name '*.so' | grep 'so' > /dev/null ; then \ echo "Writing a pango.modules file to use when running examples before installing Pango."; \ (cd ../modules && \ - $(top_builddir)/pango/pango-querymodules `find . -name '*.la' | grep -v \.libs` > ../examples/pango.modules ) ;\ + $(top_builddir)/pango/pango-querymodules `find . -name '*.la' | grep -v \.libs | grep -v libpango` > ../examples/pango.modules ) ;\ else \ - echo "No dynamic modules found; will use only static modules for uninstalled example programs."; \ + echo "No dynamic modules found; will use only static modules for not-installed example programs."; \ touch pango.modules; \ fi |