svn commit: r434816 - head/audio/optimfrog

Matthew Rezny rezny at FreeBSD.org
Sat Feb 25 14:50:30 UTC 2017


Author: rezny
Date: Sat Feb 25 14:50:28 2017
New Revision: 434816
URL: https://svnweb.freebsd.org/changeset/ports/434816

Log:
  Pass PREFIX to the install script in case it's not /usr/local
  
  PR:		216834
  Submitted by:	mi
  Approved by:	swills (mentor)
  Differential Revision:	https://reviews.freebsd.org/D9800

Modified:
  head/audio/optimfrog/Makefile

Modified: head/audio/optimfrog/Makefile
==============================================================================
--- head/audio/optimfrog/Makefile	Sat Feb 25 14:39:00 2017	(r434815)
+++ head/audio/optimfrog/Makefile	Sat Feb 25 14:50:28 2017	(r434816)
@@ -28,7 +28,7 @@ USE_LDCONFIG=	yes
 
 OPTIONS_DEFINE_i386=	SSE2
 OPTIONS_DEFINE?=	#
-SSE2_DESCR=	Use SSE2 instructions instead of x87 FP
+SSE2_DESCR=	Use SSE2 instructions instead of x87 FPU
 
 .include <bsd.port.pre.mk>
 
@@ -43,6 +43,6 @@ DISTNAME=	OptimFROG_FreeBSD_x86_${DISTVE
 .endif
 
 do-install:
-	@(cd ${WRKSRC} && ./install.sh -d ${STAGEDIR})
+	@(cd ${WRKSRC} && ./install.sh -d "${STAGEDIR}" -p "${PREFIX}")
 
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list