Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Jan 2017 17:03:51 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r431283 - head/sysutils/scprotect
Message-ID:  <201701121703.v0CH3pU3065568@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Thu Jan 12 17:03:51 2017
New Revision: 431283
URL: https://svnweb.freebsd.org/changeset/ports/431283

Log:
  - Always check OPSYS along with OSVERSION
  - Fix stage-qa on 10.x

Modified:
  head/sysutils/scprotect/Makefile

Modified: head/sysutils/scprotect/Makefile
==============================================================================
--- head/sysutils/scprotect/Makefile	Thu Jan 12 16:33:12 2017	(r431282)
+++ head/sysutils/scprotect/Makefile	Thu Jan 12 17:03:51 2017	(r431283)
@@ -17,11 +17,14 @@ CFLAGS+=	-DWITH_SCPROTECT_LIST
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} >= 1100000
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000
 BROKEN=		does not build on 11.x
 .endif
 
 post-extract:
 	@cd ${WRKSRC}/kmod && ${RM} machine
 
+post-install:
+	@${RM} -r ${STAGEDIR}/usr/lib/debug
+
 .include <bsd.port.post.mk>



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