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 | 3801df0a7f3b07f43fbafe68e4aeecb464132973 (patch) | |
tree | 9e1ed235761e43178980383a9260a8ca70040dfb /net/bind8 | |
parent | afadf00def68756dd00a4107516c54ea47d99d80 (diff) | |
download | pkgsrc-3801df0a7f3b07f43fbafe68e4aeecb464132973.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 'net/bind8')
-rw-r--r-- | net/bind8/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bind8/Makefile b/net/bind8/Makefile index 34de23139cf..7c9a1f609ff 100644 --- a/net/bind8/Makefile +++ b/net/bind8/Makefile @@ -1,5 +1,5 @@ # -# $NetBSD: Makefile,v 1.25 2004/01/28 12:18:47 grant Exp $ +# $NetBSD: Makefile,v 1.26 2004/02/06 19:04:25 jlam Exp $ # # FreeBSD Id: Makefile,v 1.12 1999/06/28 21:25:07 billf Exp # @@ -37,7 +37,7 @@ MAKEFLAGS+= INSTALL=${INSTALL} OWN_DIRS_PERMS= ${PKG_SYSCONFDIR}/ndc.d root other 700 .endif -MAKEFLAGS+= PREFIX=${PREFIX} +MAKEFLAGS+= PREFIX=${PREFIX:Q} post-extract: cd ${WRKDIR}/doc/man && \ |