Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Nov 2013 23:05:48 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r332420 - head/databases/tuning-primer
Message-ID:  <201311012305.rA1N5mNT094425@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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}
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311012305.rA1N5mNT094425>