svn commit: r454798 - in head/lang: gcc47 gcc48 gcc49

Gerald Pfeifer gerald at FreeBSD.org
Thu Nov 23 21:12:24 UTC 2017


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} \


More information about the svn-ports-all mailing list