svn commit: r421034 - head/security/openssl-devel

Bernard Spil brnrd at FreeBSD.org
Sun Aug 28 21:10:21 UTC 2016


Author: brnrd
Date: Sun Aug 28 21:10:19 2016
New Revision: 421034
URL: https://svnweb.freebsd.org/changeset/ports/421034

Log:
  security/openssl-devel: Fix index build failure on 9.x
  
    - Old fmake doesn't know :U modifier

Modified:
  head/security/openssl-devel/Makefile

Modified: head/security/openssl-devel/Makefile
==============================================================================
--- head/security/openssl-devel/Makefile	Sun Aug 28 20:44:39 2016	(r421033)
+++ head/security/openssl-devel/Makefile	Sun Aug 28 21:10:19 2016	(r421034)
@@ -37,7 +37,7 @@ OPTIONS_DEFINE=	SHARED THREADS ZLIB RFC3
 OPTIONS_DEFINE_${a}=	EC
 OPTIONS_DEFAULT_${a}=	EC
 .endfor
-.if ${TARGET_ARCH:U${MACHINE_ARCH}} == "mips64el"
+.if ${MACHINE_ARCH} == "mips64el"
 OPTIONS_DEFINE+=	EC
 OPTIONS_DEFAULT+=	EC
 .endif


More information about the svn-ports-all mailing list