diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-07 09:04:09 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-07 09:04:09 +0000 |
commit | 5997a7db2d5af7de47f411825619ffc3689f1ce2 (patch) | |
tree | 1bbd2a7d5bb395d3bfd9072fb15489b3b82a7d60 | |
parent | 0cbec7280993055798b11f4f2c333672f64d2786 (diff) | |
download | pkgsrc-5997a7db2d5af7de47f411825619ffc3689f1ce2.tar.gz |
Cleaned up the Makefile.
-rw-r--r-- | devel/guile-lib/Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/devel/guile-lib/Makefile b/devel/guile-lib/Makefile index 10e54070aac..6b86d2df54d 100644 --- a/devel/guile-lib/Makefile +++ b/devel/guile-lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2006/03/30 03:44:43 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2007/01/07 09:04:09 rillig Exp $ DISTNAME= guile-lib-0.1.2 PKGREVISION= 1 @@ -14,11 +14,11 @@ COMMENT= Library functions for Guile, implemented in Scheme # pre-configure target. # HAS_CONFIGURE= yes -CONFIGURE_DIRS= ${WRKSRC}/build -BUILD_DIRS= ${WRKSRC}/build +CONFIGURE_DIRS= build CONFIGURE_SCRIPT= ../src/configure CONFIGURE_ARGS+= --prefix=${PREFIX:Q} CONFIGURE_ARGS+= --with-pkginfodir=${PKGINFODIR:Q} +OVERRIDE_GNU_CONFIG_SCRIPTS= yes USE_TOOLS+= gmake makeinfo TEXINFO_REQD= 4.2 @@ -28,11 +28,6 @@ TEST_TARGET= test .include "../../lang/guile/buildlink3.mk" pre-configure: - ${MKDIR} ${WRKSRC}/build -.for FILE in config.guess config.sub - ${RM} ${WRKSRC}/src/build-tools/gnu/${FILE} - ${LN} -s ${PKGSRCDIR}/mk/gnu-config/${FILE} \ - ${WRKSRC}/src/build-tools/gnu/${FILE} -.endfor + mkdir ${WRKSRC}/build .include "../../mk/bsd.pkg.mk" |