diff options
author | cperciva <cperciva@FreeBSD.org> | 2004-11-24 22:19:22 +0800 |
---|---|---|
committer | cperciva <cperciva@FreeBSD.org> | 2004-11-24 22:19:22 +0800 |
commit | 6b8f2e930047168b14549cd741ab5c8712ca4489 (patch) | |
tree | 95893211a8572fb7c886bcb9f04342c4f51c3656 /sysutils/freebsd-sha1 | |
parent | e41aff52a7913563dcb30f2b47a42bc22bb45989 (diff) | |
download | freebsd-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 'sysutils/freebsd-sha1')
-rw-r--r-- | sysutils/freebsd-sha1/Makefile | 2 |
1 files changed, 1 insertions, 1 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 |