svn commit: r328068 - head/devel/autoconf-wrapper

Baptiste Daroussin bapt at FreeBSD.org
Mon Sep 23 21:58:39 UTC 2013


Author: bapt
Date: Mon Sep 23 21:58:38 2013
New Revision: 328068
URL: http://svnweb.freebsd.org/changeset/ports/328068

Log:
  Support staging

Modified:
  head/devel/autoconf-wrapper/Makefile

Modified: head/devel/autoconf-wrapper/Makefile
==============================================================================
--- head/devel/autoconf-wrapper/Makefile	Mon Sep 23 21:53:56 2013	(r328067)
+++ head/devel/autoconf-wrapper/Makefile	Mon Sep 23 21:58:38 2013	(r328068)
@@ -15,7 +15,6 @@ NO_BUILD=	YES
 TOOL?=		AUTOCONF
 WRAPPED_TOOLS?=	autoconf autoheader autom4te autoreconf autoscan \
 		autoupdate ifnames
-NO_STAGE=	yes
 .include <bsd.port.pre.mk>
 
 TOOLS_CASE!=	${ECHO_CMD} ${WRAPPED_TOOLS} | ${TR} ' ' '|'
@@ -32,9 +31,9 @@ do-configure:
 	    <${FILESDIR}/autotools-wrapper.sh >${WRKDIR}/${PORTNAME}.sh
 
 do-install:
-	@${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME}
+	@${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
 .for tool in ${WRAPPED_TOOLS}
-	@${LN} -sf ${PORTNAME} ${PREFIX}/bin/${tool}
+	@${LN} -sf ${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${tool}
 .endfor
 
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list