summaryrefslogtreecommitdiff
path: root/devel/buildtool
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2003-01-09 19:20:18 +0000
committerjmmv <jmmv@pkgsrc.org>2003-01-09 19:20:18 +0000
commit69dfab74c9972ffb52899a7a8c6ea5329fc0f4e9 (patch)
treea55bb392d9e22228dfdb0c72d49ad5ab17cabccf /devel/buildtool
parent89dcc47214452d7fe75ab2e97af8836ff1133fda (diff)
downloadpkgsrc-69dfab74c9972ffb52899a7a8c6ea5329fc0f4e9.tar.gz
Use HAS_CONFIGURE and CONFIGURE_ARGS instead of defining our own do-configure
target. Not doing this means that variables like CFLAGS are not passed to the script.
Diffstat (limited to 'devel/buildtool')
-rw-r--r--devel/buildtool/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/buildtool/Makefile b/devel/buildtool/Makefile
index 0e0f85720eb..60af1d173ed 100644
--- a/devel/buildtool/Makefile
+++ b/devel/buildtool/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2002/12/15 17:22:37 jmmv Exp $
+# $NetBSD: Makefile,v 1.4 2003/01/09 19:20:18 jmmv Exp $
#
DISTNAME= buildtool-0.8
@@ -10,15 +10,15 @@ HOMEPAGE= http://buildtool.sourceforge.net/
COMMENT= Portable BSD-like build infrastructure
USE_BUILDLINK2= yes
+HAS_CONFIGURE= yes
TEXINFO_REQD= 4.0
INFO_FILES= buildtool.info
PKG_SYSCONFSUBDIR= buildtool
-do-configure:
- @cd ${WRKSRC} && ${CONFIGURE_ENV} ./configure -p ${LOCALBASE} \
- -c ${PKG_SYSCONFDIR}
+CONFIGURE_ARGS= -p ${LOCALBASE}
+CONFIGURE_ARGS+= -c ${PKG_SYSCONFDIR}
.include "../../mk/texinfo.mk"