svn commit: r328104 - head/Mk

Baptiste Daroussin bapt at FreeBSD.org
Tue Sep 24 10:04:22 UTC 2013


Author: bapt
Date: Tue Sep 24 10:04:22 2013
New Revision: 328104
URL: http://svnweb.freebsd.org/changeset/ports/328104

Log:
  Define UID earlier so that it can be used by USES

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Tue Sep 24 10:00:08 2013	(r328103)
+++ head/Mk/bsd.port.mk	Tue Sep 24 10:04:22 2013	(r328104)
@@ -1489,6 +1489,10 @@ PKGCOMPATDIR?=		${LOCALBASE}/lib/compat/
 USES+=	gmake
 .endif
 
+.if !defined(UID)
+UID!=	${ID} -u
+.endif
+
 # Loading features
 .for f in ${USES}
 _f=${f:C/\:.*//g}
@@ -1620,10 +1624,6 @@ PATCH_DEPENDS+=		${LOCALBASE}/bin/unzip:
 .endif
 .endif
 
-.if !defined(UID)
-UID!=	${ID} -u
-.endif
-
 # Check the compatibility layer for amd64/ia64
 
 .if ${ARCH} == "amd64" || ${ARCH} =="ia64"


More information about the svn-ports-all mailing list