diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-08-25 14:11:24 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-08-25 14:11:24 +0000 |
commit | 3636912052e48d04d454afdd1149401ec1dec262 (patch) | |
tree | 7c8f7df4326590d585134d85885d9ae61bedf8ea /examples | |
parent | 180627387c544eafc8e253ea6e9f13064e328500 (diff) | |
download | pango-3636912052e48d04d454afdd1149401ec1dec262.tar.gz |
Add a dependency on pango-querymodules... Really needs to depend on the
Fri Aug 22 17:29:42 2003 Owen Taylor <otaylor@redhat.com>
* examples/Makefile.am (pango.modules): Add a dependency
on pango-querymodules... Really needs to depend on the
modules too, but this at least will reduce the chances
of it not getting rebuild when necessary.
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 bc718021..9b451564 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -35,11 +35,11 @@ else all-local: pango.modules endif -pango.modules: +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 && \ - ../pango/pango-querymodules `find . -name '*.la' | grep -v \.libs` > ../examples/pango.modules ) ;\ + $(top_builddir)/pango/pango-querymodules `find . -name '*.la' | grep -v \.libs` > ../examples/pango.modules ) ;\ else \ echo "No dynamic modules found; will use only static modules for uninstalled example programs."; \ touch pango.modules; \ |