diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-08-30 18:23:43 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-08-30 18:23:43 +0000 |
commit | e989c70674b0d62dccd070b3740a5dc7fa39eaae (patch) | |
tree | 803d0dbce8df2299eea75522fc97905f22e34ce6 /modules | |
parent | 597e6d8e9755a237f77711be68dfc2139aac290e (diff) | |
download | pango-e989c70674b0d62dccd070b3740a5dc7fa39eaae.tar.gz |
Improve the conditional to ignore included modules.
2006-08-30 Behdad Esfahbod <behdad@gnome.org>
* modules/Makefile.am (pango.modules): Improve the conditional to
ignore included modules.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/Makefile.am b/modules/Makefile.am index efc1532a..43c5410e 100644 --- a/modules/Makefile.am +++ b/modules/Makefile.am @@ -47,7 +47,7 @@ uninstall-local: $(RM) $(DESTDIR)$(sysconfdir)/pango/pango.modules pango.modules: $(top_builddir)/pango/pango-querymodules $(SUBDIRS) - @if find . -name '*.la' | grep '.' > /dev/null ; then \ + @if find . -name '*.la' | grep -v '\.libs' | grep -v libpango | grep '.' > /dev/null ; then \ echo "Writing a pango.modules file to use with tests/examples."; \ $(top_builddir)/pango/pango-querymodules `find . -name '*.la' | grep -v '\.libs' | grep -v libpango` > $@ ;\ else \ |