svn commit: r500971 - head/sysutils/lsof

Larry Rosenman ler at FreeBSD.org
Tue May 7 16:37:16 UTC 2019


Author: ler
Date: Tue May  7 16:37:15 2019
New Revision: 500971
URL: https://svnweb.freebsd.org/changeset/ports/500971

Log:
  sysutils/lsof: put the SRC_BASE check back where it actually works in poudriere.

Modified:
  head/sysutils/lsof/Makefile

Modified: head/sysutils/lsof/Makefile
==============================================================================
--- head/sysutils/lsof/Makefile	Tue May  7 16:20:57 2019	(r500970)
+++ head/sysutils/lsof/Makefile	Tue May  7 16:37:15 2019	(r500971)
@@ -23,15 +23,15 @@ GH_ACCOUNT=	lsof-org
 
 SHEBANG_FILES=	scripts/sort_res.perl5
 
-.if !exists(${SRC_BASE}/sys/kern/kern_lockf.c)
-IGNORE=		requires kernel sources
-.endif
-
 .include <bsd.port.pre.mk>
 
 CONFIGURE_SCRIPT=	Configure
 CONFIGURE_ARGS=	-n freebsd
 CONFIGURE_ENV=	LSOF_CC="${CC}" FREEBSD_SYS="${SRC_BASE}/sys"
+
+.if !exists(${SRC_BASE}/sys/kern/kern_lockf.c)
+IGNORE=		requires kernel sources
+.endif
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/lsof ${STAGEDIR}${PREFIX}/sbin


More information about the svn-ports-all mailing list