diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-11-02 15:27:27 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-11-02 15:27:27 +0000 |
commit | ca21695fe9fe8d5db74ae77be9700ceb3fe29180 (patch) | |
tree | d954db94ab073f1ccfb02254080769d05c6d547a /examples/tree | |
parent | bc0d15aba7f5c8b741acca9d19546a23eaef11d0 (diff) | |
download | gdk-pixbuf-ca21695fe9fe8d5db74ae77be9700ceb3fe29180.tar.gz |
Convert to use pkg-config rather than gtk-config. (#53375, Skip Montanaro)
Fri Nov 2 10:21:03 2001 Owen Taylor <otaylor@redhat.com>
* examples/**/Makefile.am: Convert to use pkg-config
rather than gtk-config. (#53375, Skip Montanaro)
Diffstat (limited to 'examples/tree')
-rw-r--r-- | examples/tree/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tree/Makefile b/examples/tree/Makefile index d6ad4cd6f..015f78ece 100644 --- a/examples/tree/Makefile +++ b/examples/tree/Makefile @@ -2,7 +2,7 @@ CC = gcc tree: tree.c - $(CC) `gtk-config --cflags` tree.c -o tree `gtk-config --libs` + $(CC) `pkg-config --cflags gtk+-2.0` tree.c -o tree `pkg-config --libs gtk+-2.0` clean: rm -f *.o tree |