svn commit: r390515 - head/math/octave-forge-interval

Stephen Montgomery-Smith stephen at FreeBSD.org
Wed Jun 24 20:02:07 UTC 2015


Author: stephen
Date: Wed Jun 24 20:02:06 2015
New Revision: 390515
URL: https://svnweb.freebsd.org/changeset/ports/390515

Log:
  - Correct condition for BROKEN: && -> ||.
  I had forgotten de Morgan's laws!  :-)

Modified:
  head/math/octave-forge-interval/Makefile

Modified: head/math/octave-forge-interval/Makefile
==============================================================================
--- head/math/octave-forge-interval/Makefile	Wed Jun 24 19:35:58 2015	(r390514)
+++ head/math/octave-forge-interval/Makefile	Wed Jun 24 20:02:06 2015	(r390515)
@@ -29,7 +29,7 @@ post-build:
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} < 1000000 && ${ARCH} == "i386"
+.if ${OSVERSION} < 1000000 || ${ARCH} == "i386"
 BROKEN=		Doesn't build on FreeBSD 9 nor i386
 .endif
 


More information about the svn-ports-all mailing list