diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-11-29 05:45:38 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-11-29 05:45:38 +0000 |
commit | 7346a00add6d91635996b7021f5c4e0d76204d86 (patch) | |
tree | e8a8ef5ea0421dcd455e2e49f287f9cfe28f156f /gdk-pixbuf | |
parent | b5096b15f1782d4316c2102d18bcc2ccf42ceff1 (diff) | |
download | gdk-pixbuf-7346a00add6d91635996b7021f5c4e0d76204d86.tar.gz |
Use the perl found by configure. (#149826, Morten Welinder)
2004-11-29 Matthias Clasen <mclasen@redhat.com>
* gtk/Makefile.am (gtkalias.h):
* gdk/Makefile.am (gdkalias.h): Use the perl found by
configure. (#149826, Morten Welinder)
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/ChangeLog | 7 | ||||
-rw-r--r-- | gdk-pixbuf/Makefile.am | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index fa573386a..9f363bd89 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,6 +1,11 @@ +2004-11-29 Matthias Clasen <mclasen@redhat.com> + + * Makefile.am (gdk-pixbuf-alias.h): Use the perl found by + configure. (#149826, Morten Welinder) + Sun Nov 28 12:11:21 2004 Manish Singh <yosh@gimp.org> - * makegdkpixbufalias.pl: ytpo fix, so attributes are really + * makegdkpixbufalias.pl: Typo fix, so attributes are really propagated. 2004-11-28 Matthias Clasen <mclasen@redhat.com> diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am index ee41f7063..55ed65ba8 100644 --- a/gdk-pixbuf/Makefile.am +++ b/gdk-pixbuf/Makefile.am @@ -40,10 +40,10 @@ uninstall-ms-lib: endif gdk_pixbuf.def: gdk-pixbuf.symbols - (echo -e EXPORTS; cpp -P -DINCLUDE_VARIABLES $(srcdir)/gdk-pixbuf.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk_pixbuf.def + (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES $(srcdir)/gdk-pixbuf.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk_pixbuf.def gdk-pixbuf-alias.h: gdk-pixbuf.symbols - $(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h + $(PERL) $(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h if OS_UNIX TESTS = abicheck.sh |