aboutsummaryrefslogtreecommitdiffstats
path: root/ports-mgmt
diff options
context:
space:
mode:
authorcperciva <cperciva@FreeBSD.org>2004-11-24 22:19:22 +0800
committercperciva <cperciva@FreeBSD.org>2004-11-24 22:19:22 +0800
commit6b8f2e930047168b14549cd741ab5c8712ca4489 (patch)
tree95893211a8572fb7c886bcb9f04342c4f51c3656 /ports-mgmt
parente41aff52a7913563dcb30f2b47a42bc22bb45989 (diff)
downloadfreebsd-ports-gnome-6b8f2e930047168b14549cd741ab5c8712ca4489.tar.gz
freebsd-ports-gnome-6b8f2e930047168b14549cd741ab5c8712ca4489.tar.zst
freebsd-ports-gnome-6b8f2e930047168b14549cd741ab5c8712ca4489.zip
Add whitespace around parentheses in .if logic, in order to unbreak
port and INDEX builds on old (5.1 & 4.7?) releases. PR: ports/74192 Reported by: Joe Horn Approved by: mat With hat: maintainer
Diffstat (limited to 'ports-mgmt')
-rw-r--r--ports-mgmt/portsnap/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports-mgmt/portsnap/Makefile b/ports-mgmt/portsnap/Makefile
index c5ae197f5d26..c14b261925e7 100644
--- a/ports-mgmt/portsnap/Makefile
+++ b/ports-mgmt/portsnap/Makefile
@@ -19,7 +19,7 @@ RUN_DEPENDS= bspatch:${PORTSDIR}/misc/bsdiff \
.include <bsd.port.pre.mk>
-.if ${OSVERSION} < 491101 || (${OSVERSION} > 499999 && ${OSVERSION} < 502114)
+.if ${OSVERSION} < 491101 || ( ${OSVERSION} > 499999 && ${OSVERSION} < 502114 )
RUN_DEPENDS+= sha1:${PORTSDIR}/sysutils/freebsd-sha1
.endif