svn commit: r332420 - head/databases/tuning-primer

Bryan Drewery bdrewery at FreeBSD.org
Fri Nov 1 23:05:49 UTC 2013


Author: bdrewery
Date: Fri Nov  1 23:05:48 2013
New Revision: 332420
URL: http://svnweb.freebsd.org/changeset/ports/332420

Log:
  - Fix build after r327580 by using proper source path. [1][2]
  - Convert to staging while here
  
  PR:		ports/182349 [1]
  Reported by:	Remko C. <sirdice at gmail.com> [1]
  Reported by:	marino [2]

Modified:
  head/databases/tuning-primer/Makefile

Modified: head/databases/tuning-primer/Makefile
==============================================================================
--- head/databases/tuning-primer/Makefile	Fri Nov  1 23:00:20 2013	(r332419)
+++ head/databases/tuning-primer/Makefile	Fri Nov  1 23:05:48 2013	(r332420)
@@ -21,11 +21,10 @@ USE_MYSQL=	yes
 
 PLIST_FILES=	bin/${PORTNAME}
 
-NO_STAGE=	yes
 do-install:
-	@${CP} ${DISTDIR}/${PORTNAME}.sh \
-		${PREFIX}/bin/${PORTNAME}
-	@${CHMOD} 755 ${PREFIX}/bin/${PORTNAME}
+	${CP} ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.sh \
+		${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+	${CHMOD} 755 ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
 	@${ECHO_CMD} '@exec ${CHMOD} 755 ${PREFIX}/bin/${PORTNAME}' \
 		>> ${TMPPLIST}
 


More information about the svn-ports-head mailing list