diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2014-05-20 19:32:39 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2014-05-20 19:32:39 +0000 |
commit | f191d6b8872215d88c30b5942a9319854b9e98ba (patch) | |
tree | 2ae9e1593b29ed28637a9cbae361c9e3af678802 /archivers | |
parent | 47e51189262149884b0a6e3a5653e397d7635d35 (diff) |
Quote ${CC} and similar variables in MAKE_ARGS.
Reported by: Dominic Fandrey <kamikaze@bsdforen.de>
Notes
Notes:
svn path=/head/; revision=354670
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/packddir/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archivers/packddir/Makefile b/archivers/packddir/Makefile index a7bbffcd6730..d6d5dea9444d 100644 --- a/archivers/packddir/Makefile +++ b/archivers/packddir/Makefile @@ -15,7 +15,7 @@ WRKSRC= ${WRKDIR}/src PLIST_FILES= bin/upackddir \ man/man1/upackddir.1.gz -MAKE_ARGS= CC=${CC} +MAKE_ARGS= CC="${CC}" post-patch: ${REINPLACE_CMD} -e 's|$$(DESTDIR)/usr|$$(DESTDIR)${PREFIX}|' ${WRKSRC}/Makefile |