diff options
author | danfe <danfe@FreeBSD.org> | 2008-08-13 03:11:19 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2008-08-13 03:11:19 +0800 |
commit | ca535cf9a57191c608d40913426459465253a46a (patch) | |
tree | 836f897bbc30b738019bc330004c8c4a59d354dd /games | |
parent | 16242a774f5090787c1b038d831f540ae73040b9 (diff) | |
download | freebsd-ports-gnome-ca535cf9a57191c608d40913426459465253a46a.tar.gz freebsd-ports-gnome-ca535cf9a57191c608d40913426459465253a46a.tar.zst freebsd-ports-gnome-ca535cf9a57191c608d40913426459465253a46a.zip |
Fix classic "unquoted parameter with spaces" case.
Reported by: pointyhat (via pav, erwin)
Diffstat (limited to 'games')
-rw-r--r-- | games/warsow/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/warsow/Makefile b/games/warsow/Makefile index 14ea5341f740..23fc7c24cd5c 100644 --- a/games/warsow/Makefile +++ b/games/warsow/Makefile @@ -121,6 +121,6 @@ do-install: .for b in ${WSWBIN} ${INSTALL_PROGRAM} ${RELEASEDIR}/${b}.${ARCH} ${PREFIX}/bin/${b} .endfor - cd ${RELEASEDIR} && ${COPYTREE_SHARE} ${WSWSUBDIR} ${DATADIR} + cd ${RELEASEDIR} && ${COPYTREE_SHARE} "${WSWSUBDIR}" ${DATADIR} .include <bsd.port.post.mk> |