Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Dec 2016 13:35:38 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r429515 - head/net/freeswitch
Message-ID:  <201612261335.uBQDZcCD019800@repo.freebsd.org>

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



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