summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorColin Percival <cperciva@FreeBSD.org>2004-11-24 14:19:22 +0000
committerColin Percival <cperciva@FreeBSD.org>2004-11-24 14:19:22 +0000
commit8ec0adb10b84deee0b4632e8ef6ee698c3526874 (patch)
treeb92f81d663f86b73972f3ed72745dbe909bbab70 /sysutils
parentUpdate to 3.1 release. (diff)
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
Notes
Notes: svn path=/head/; revision=122306
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/freebsd-sha1/Makefile2
-rw-r--r--sysutils/portsnap/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/freebsd-sha1/Makefile b/sysutils/freebsd-sha1/Makefile
index f6a85b038f7b..b65454c53c72 100644
--- a/sysutils/freebsd-sha1/Makefile
+++ b/sysutils/freebsd-sha1/Makefile
@@ -23,7 +23,7 @@ PLIST_FILES= sbin/sha1
.include <bsd.port.pre.mk>
-.if ${OSVERSION} > 502113 || (${OSVERSION} > 491100 && ${OSVERSION} < 500000)
+.if ${OSVERSION} > 502113 || ( ${OSVERSION} > 491100 && ${OSVERSION} < 500000 )
IGNORE= "sha1 now contained in the base system"
.endif
diff --git a/sysutils/portsnap/Makefile b/sysutils/portsnap/Makefile
index c5ae197f5d26..c14b261925e7 100644
--- a/sysutils/portsnap/Makefile
+++ b/sysutils/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