Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jun 2015 14:12:21 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390407 - head/graphics/gauche-gl
Message-ID:  <201506231412.t5NECLQa055642@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Tue Jun 23 14:12:21 2015
New Revision: 390407
URL: https://svnweb.freebsd.org/changeset/ports/390407

Log:
  - Fix library stripping

Modified:
  head/graphics/gauche-gl/Makefile

Modified: head/graphics/gauche-gl/Makefile
==============================================================================
--- head/graphics/gauche-gl/Makefile	Tue Jun 23 14:12:14 2015	(r390406)
+++ head/graphics/gauche-gl/Makefile	Tue Jun 23 14:12:21 2015	(r390407)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gl
 PORTVERSION=	0.6
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics scheme
 MASTER_SITES=	SF/gauche/Gauche-gl
 PKGNAMEPREFIX=	gauche-
@@ -57,6 +57,7 @@ do-install:
 	@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \
 		${STAGEDIR}${EXAMPLESDIR})
 	@(cd ${STAGEDIR}${PREFIX}/lib/gauche-0.9/site/${CONFIGURE_TARGET} && \
-		${STRIP_CMD} libgauche-*.so)
+		${CHMOD} u+w libgauche-*.so && ${STRIP_CMD} libgauche-*.so && \
+		${CHMOD} u-w libgauche-*.so)
 
 .include <bsd.port.mk>



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