aboutsummaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2002-04-03 01:17:57 +0000
committerAde Lovett <ade@FreeBSD.org>2002-04-03 01:17:57 +0000
commitb13d153e13cee0dcb1df4ef70068fa06567fc41b (patch)
tree1f6938de63ca1c1526f315f6b0f77918a0972971 /Mk/bsd.port.mk
parenta31c45a0b4b17f5d096eed1898c2707ee051cbfc (diff)
downloadports-b13d153e13cee0dcb1df4ef70068fa06567fc41b.tar.gz
ports-b13d153e13cee0dcb1df4ef70068fa06567fc41b.zip
Fix missing quotes around one instance of
if [ ! -z "$$select" ] Submitted by: lioux
Notes
Notes: svn path=/head/; revision=57249
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 35e282603b47..417e5c03a73b 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -2112,7 +2112,7 @@ do-fetch:
exit 1; \
fi ; \
${ECHO_MSG} ">> $$file doesn't seem to exist in ${_DISTDIR}."; \
- if [ ! -z $$select ] ; then \
+ if [ ! -z "$$select" ] ; then \
__PATCH_SITES_TMP= ; \
for group in $$select; do \
if [ ! -z \$${_PATCH_SITES_$${group}} ] ; then \