Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Jun 2015 20:02:06 +0000 (UTC)
From:      Stephen Montgomery-Smith <stephen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390515 - head/math/octave-forge-interval
Message-ID:  <201506242002.t5OK26Si050734@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506242002.t5OK26Si050734>