svn commit: r429515 - head/net/freeswitch

Raphael Kubo da Costa rakuco at FreeBSD.org
Mon Dec 26 13:35:39 UTC 2016


Author: rakuco
Date: Mon Dec 26 13:35:38 2016
New Revision: 429515
URL: https://svnweb.freebsd.org/changeset/ports/429515

Log:
  Stop setting INSTALL_TARGET to install-strip.
  
  This causes `make stage' to fail, as noticed by pkg-fallout:
  
      libtool: install: strip --strip-debug /wrkdirs/usr/ports/net/freeswitch/work/stage/usr/local/lib/libfreeswitch.a
      strip: file format not recognized

Modified:
  head/net/freeswitch/Makefile

Modified: head/net/freeswitch/Makefile
==============================================================================
--- head/net/freeswitch/Makefile	Mon Dec 26 13:26:00 2016	(r429514)
+++ head/net/freeswitch/Makefile	Mon Dec 26 13:35:38 2016	(r429515)
@@ -55,7 +55,10 @@ ALL_MODULES_CONFLICTS_BUILD+=	apr
 ALL_MODULES_EXTRA_PATCHES=	${FILESDIR}/extrapatch-modules.conf
 
 GNU_CONFIGURE=		yes
-INSTALL_TARGET=		install-strip
+# install-strip causes `make stage' to fail:
+# libtool: install: strip --strip-debug /wrkdirs/usr/ports/net/freeswitch/work/stage/usr/local/lib/libfreeswitch.a
+# strip: file format not recognized
+# INSTALL_TARGET=		install-strip
 SHEBANG_FILES=		scripts/fsxs.in
 USE_RC_SUBR=		freeswitch
 


More information about the svn-ports-head mailing list