Generating INDEX.tmp - please wait.."Makefile", line 26: warning: String comparison operator should be either == or != "Makefile", line 26: Malformed conditional (${OSVERSION} > 502113 || (${OSVERSION} > 491100 && ${OSVERSION} < 500000)) "Makefile", line 26: Missing dependency operator "Makefile", line 28: if-less endif "Makefile", line 28: Need an operator make: fatal errors encountered -- cannot continue ===> sysutils/freebsd-sha1 failed *** Error code 1
State Changed From-To: open->feedback Please see if the following patch fixes your problem: Index: Makefile =================================================================== RCS file: /home/FreeBSD/pcvs/ports/sysutils/freebsd-sha1/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 25 Oct 2004 18:36:12 -0000 1.1 +++ Makefile 21 Nov 2004 23:44:30 -0000 @@ -23,7 +23,7 @@ .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
Responsible Changed From-To: freebsd-ports-bugs->cpervia Over to maintainer
Responsible Changed From-To: cpervia->cperciva Thick fingers
State Changed From-To: feedback->closed I think I've fixed this in both sysutils/portsnap and sysutils/freebsd-sha1.