Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Nov 2017 21:12:23 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r454798 - in head/lang: gcc47 gcc48 gcc49
Message-ID:  <201711232112.vANLCNvH013778@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gerald
Date: Thu Nov 23 21:12:22 2017
New Revision: 454798
URL: https://svnweb.freebsd.org/changeset/ports/454798

Log:
  Backport the change to ensure what we install is stripped (i.e., debug
  info is removed) from lang/gcc7 to lang/gcc47, lang/gcc48 and lang/gcc49.
  
  (For more background see revisions 454177 and 454422.)
  
  Reported by:	Ports QA Framework, miwi, sobomax
  Discussed with:	tijl, miwi
  Differential Revision:	https://reviews.freebsd.org/D10357

Modified:
  head/lang/gcc47/Makefile
  head/lang/gcc48/Makefile
  head/lang/gcc49/Makefile

Modified: head/lang/gcc47/Makefile
==============================================================================
--- head/lang/gcc47/Makefile	Thu Nov 23 19:15:31 2017	(r454797)
+++ head/lang/gcc47/Makefile	Thu Nov 23 21:12:22 2017	(r454798)
@@ -61,6 +61,10 @@ CONFIGURE_ARGS+=--disable-bootstrap
 CONFIGURE_ARGS+=--with-build-config=bootstrap-debug
 ALL_TARGET=	bootstrap-lean
 .endif
+INSTALL_TARGET=	install-strip
+.if ${UID} != 0
+BINMODE=	755
+.endif
 CONFIGURE_ARGS+=--disable-nls \
 		--enable-gnu-indirect-function \
 		--libdir=${TARGLIB} \

Modified: head/lang/gcc48/Makefile
==============================================================================
--- head/lang/gcc48/Makefile	Thu Nov 23 19:15:31 2017	(r454797)
+++ head/lang/gcc48/Makefile	Thu Nov 23 21:12:22 2017	(r454798)
@@ -82,6 +82,10 @@ CONFIGURE_ARGS+=--disable-bootstrap
 CONFIGURE_ARGS+=--with-build-config=bootstrap-debug
 ALL_TARGET=	bootstrap-lean
 .endif
+INSTALL_TARGET=	install-strip
+.if ${UID} != 0
+BINMODE=	755
+.endif
 CONFIGURE_ARGS+=--disable-nls \
 		--enable-gnu-indirect-function \
 		--libdir=${TARGLIB} \

Modified: head/lang/gcc49/Makefile
==============================================================================
--- head/lang/gcc49/Makefile	Thu Nov 23 19:15:31 2017	(r454797)
+++ head/lang/gcc49/Makefile	Thu Nov 23 21:12:22 2017	(r454798)
@@ -82,6 +82,10 @@ CONFIGURE_ARGS+=--disable-bootstrap
 CONFIGURE_ARGS+=--with-build-config=bootstrap-debug
 ALL_TARGET=	bootstrap-lean
 .endif
+INSTALL_TARGET=	install-strip
+.if ${UID} != 0
+BINMODE=	755
+.endif
 CONFIGURE_ARGS+=--disable-nls \
 		--enable-gnu-indirect-function \
 		--libdir=${TARGLIB} \



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