diff options
author | jlam <jlam@pkgsrc.org> | 2004-02-06 19:04:24 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-02-06 19:04:24 +0000 |
commit | 7699290f1060509f9b32dff10f411e2e95c11798 (patch) | |
tree | 9e1ed235761e43178980383a9260a8ca70040dfb /pkgtools | |
parent | ca9cfaafab77ea1327c66314e401682f91707ba0 (diff) | |
download | pkgsrc-7699290f1060509f9b32dff10f411e2e95c11798.tar.gz |
If we're passing through MAKEFLAGS variables whose values may contain
spaces, use the :Q modifier instead of double-quoting the value. This
avoids breakage when executing the just-in-time su targets.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/gensolpkg/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/gensolpkg/Makefile b/pkgtools/gensolpkg/Makefile index 2b2100e2197..528b0ced330 100644 --- a/pkgtools/gensolpkg/Makefile +++ b/pkgtools/gensolpkg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2003/07/17 22:52:14 grant Exp $ +# $NetBSD: Makefile,v 1.19 2004/02/06 19:04:25 jlam Exp $ # DISTNAME= gensolpkg-1.10 @@ -12,7 +12,7 @@ COMMENT= Utility to generate a Solaris package ONLY_FOR_PLATFORM= SunOS-*-* # uses Solaris pkgmk(1) MAKE_ENV+= CPPFLAGS="" CC=${CC:Q} -MAKEFLAGS+= PREFIX=${PREFIX} ZOULARISBASE=${ZOULARISBASE} +MAKEFLAGS+= PREFIX=${PREFIX:Q} ZOULARISBASE=${ZOULARISBASE:Q} do-install: cd ${WRKSRC} && ${MAKE} install PREFIX=${PREFIX} |