svn commit: r437936 - head/devel/cloudabi-toolchain

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri Apr 7 16:04:32 UTC 2017


Author: amdmi3
Date: Fri Apr  7 16:04:31 2017
New Revision: 437936
URL: https://svnweb.freebsd.org/changeset/ports/437936

Log:
  - Always check OPSYS along with OSVERSION
  
  Approved by:	portmgr blanket

Modified:
  head/devel/cloudabi-toolchain/Makefile

Modified: head/devel/cloudabi-toolchain/Makefile
==============================================================================
--- head/devel/cloudabi-toolchain/Makefile	Fri Apr  7 16:03:05 2017	(r437935)
+++ head/devel/cloudabi-toolchain/Makefile	Fri Apr  7 16:04:31 2017	(r437936)
@@ -26,7 +26,7 @@ SHELL_TOOLS=	man pkg-config
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} >= 1100100
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100100
 # Depend on ELF tools provided by the base system. They work well with
 # CloudABI executables.
 BASE_TOOLS=	addr2line c++filt objcopy readelf strings strip


More information about the svn-ports-head mailing list