Date: Sat, 9 Jul 2016 18:59:20 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418288 - head/audio/portaudio Message-ID: <201607091859.u69IxK7g054488@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sat Jul 9 18:59:19 2016 New Revision: 418288 URL: https://svnweb.freebsd.org/changeset/ports/418288 Log: audio/portaudio: fix test program installation - Before the patch the libtool wrapper scripts were installed instead of real test programs PR: 210455 Submitted by: Tobias Kortkamp <t@tobik.me> Approved by: koalative@gmail.com (maintainer timeout) Modified: head/audio/portaudio/Makefile Modified: head/audio/portaudio/Makefile ============================================================================== --- head/audio/portaudio/Makefile Sat Jul 9 18:43:40 2016 (r418287) +++ head/audio/portaudio/Makefile Sat Jul 9 18:59:19 2016 (r418288) @@ -3,7 +3,7 @@ PORTNAME= portaudio DISTVERSION= 19_20140130 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= http://www.portaudio.com/archives/ DISTNAME= pa_stable_v${DISTVERSION} @@ -60,7 +60,8 @@ post-install: post-install-PATEST-on: .for f in ${PATEST_BIN} - ${INSTALL_SCRIPT} ${WRKSRC}/bin/${f} ${STAGEDIR}${PREFIX}/bin/ + ${STRIP_CMD} ${WRKSRC}/bin/.libs/${f} + ${INSTALL_PROGRAM} ${WRKSRC}/bin/.libs/${f} ${STAGEDIR}${PREFIX}/bin/ .endfor post-install-DOCS-on:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607091859.u69IxK7g054488>