diff options
author | jlam <jlam> | 2002-02-27 07:13:16 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-02-27 07:13:16 +0000 |
commit | 1b5d2e4775f2b5d7eb3a90a8ebdb6f5da21f787e (patch) | |
tree | 57b9f6110b91f4f54d1f4893b3efb73cb2a0da2c /graphics/gdk-pixbuf | |
parent | 0756b3d2bf1899e78bed95115c17cdd37c03fb51 (diff) | |
download | pkgsrc-1b5d2e4775f2b5d7eb3a90a8ebdb6f5da21f787e.tar.gz |
Change the way in which the autotools are invoked to match the example in
Packages.txt. This seems to prevent a recompilation of most of the
libraries during the installation phase.
Diffstat (limited to 'graphics/gdk-pixbuf')
-rw-r--r-- | graphics/gdk-pixbuf/Makefile.common | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/gdk-pixbuf/Makefile.common b/graphics/gdk-pixbuf/Makefile.common index 2761d4e496e..daee26c1fd1 100644 --- a/graphics/gdk-pixbuf/Makefile.common +++ b/graphics/gdk-pixbuf/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.18 2002/02/27 06:41:05 jlam Exp $ +# $NetBSD: Makefile.common,v 1.19 2002/02/27 07:13:16 jlam Exp $ # DISTNAME= gdk-pixbuf-0.11.0 @@ -26,7 +26,9 @@ PATCHDIR= ${.CURDIR}/../gdk-pixbuf/patches pre-configure: cd ${WRKSRC}; \ - ${LOCALBASE}/bin/automake; \ + ${LOCALBASE}/bin/aclocal; \ + ${LOCALBASE}/bin/autoheader; \ + ${LOCALBASE}/bin/automake -a --foreign -i; \ ${LOCALBASE}/bin/autoconf .include "../../graphics/jpeg/buildlink.mk" |