svn commit: r497736 - head/devel/librevisa

Fernando Apesteguía fernape at FreeBSD.org
Wed Apr 3 16:44:32 UTC 2019


Author: fernape
Date: Wed Apr  3 16:44:31 2019
New Revision: 497736
URL: https://svnweb.freebsd.org/changeset/ports/497736

Log:
  devel/librevisa: fix non-default PREFIX
  
  Stripping was done always in LOCALBASE
  
  PR:	236750
  Submitted by:	jcfyecrayz at liamekaens.com

Modified:
  head/devel/librevisa/Makefile

Modified: head/devel/librevisa/Makefile
==============================================================================
--- head/devel/librevisa/Makefile	Wed Apr  3 16:33:24 2019	(r497735)
+++ head/devel/librevisa/Makefile	Wed Apr  3 16:44:31 2019	(r497736)
@@ -16,6 +16,6 @@ USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 
 post-install:
-	${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/libvisa.so
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libvisa.so
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list