diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2000-07-06 00:05:22 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2000-07-06 00:05:22 +0000 |
commit | 3dd488dfcbf422249b4a4f4b4c0101ed40d9d8c4 (patch) | |
tree | b6ffb2c55bfd2f19668c6f950c622e2c203f37ab /sysutils/cdrecord-current | |
parent | 206314d09f3e3956c4172eb4010736744f61624a (diff) | |
download | pkgsrc-3dd488dfcbf422249b4a4f4b4c0101ed40d9d8c4.tar.gz |
override the ARCH variable to ensure a bad value isn't picked up from the
users environment.
Diffstat (limited to 'sysutils/cdrecord-current')
-rw-r--r-- | sysutils/cdrecord-current/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysutils/cdrecord-current/Makefile b/sysutils/cdrecord-current/Makefile index 56f8e38391e..0cc00e815dd 100644 --- a/sysutils/cdrecord-current/Makefile +++ b/sysutils/cdrecord-current/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2000/06/15 12:06:21 hubertf Exp $ +# $NetBSD: Makefile,v 1.12 2000/07/06 00:06:10 dmcmahill Exp $ DISTNAME= cdrecord-1.9a01 CATEGORIES= sysutils @@ -12,6 +12,8 @@ USE_GMAKE= yes WRKSRC= ${WRKDIR}/${DISTNAME:C/a.*//} TARGET_ARCH= ${MACHINE_ARCH}-netbsd-cc TARGET_DIR= OBJ/${TARGET_ARCH} +#override ARCH to avoid picking up a bad ${ARCH} during the build +MAKE_ENV+= ARCH="" do-configure: ${MKDIR} ${WRKSRC}/include/sys |