Date: Tue, 24 Sep 2013 10:04:22 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328104 - head/Mk Message-ID: <201309241004.r8OA4MaV087749@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309241004.r8OA4MaV087749>