Bug 176981 - lang/gawk: minor fix
Summary: lang/gawk: minor fix
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Johan van Selst
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-15 06:30 UTC by fiziologus
Modified: 2013-03-17 14:10 UTC (History)
0 users

See Also:


Attachments
file.diff (352 bytes, patch)
2013-03-15 06:30 UTC, fiziologus
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description fiziologus 2013-03-15 06:30:00 UTC
s|-export-dynamic|-Wl,--export-dynamic|

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-15 06:30:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->johans

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-03-17 14:05:28 UTC
Author: johans
Date: Sun Mar 17 14:05:20 2013
New Revision: 314439
URL: http://svnweb.freebsd.org/changeset/ports/314439

Log:
  Use correct flag for --export-dynamic
  
  PR:		ports/176981
  Submitted by:	Green Dog <fiziologus@gmail.com>

Modified:
  head/lang/gawk/Makefile

Modified: head/lang/gawk/Makefile
==============================================================================
--- head/lang/gawk/Makefile	Sun Mar 17 14:04:11 2013	(r314438)
+++ head/lang/gawk/Makefile	Sun Mar 17 14:05:20 2013	(r314439)
@@ -1,7 +1,4 @@
-# New ports collection makefile for:	gawk
-# Date created:		Mi  21 Okt 1998 13:53:18 CEST
-# Whom:			Andreas Klemm <andreas@klemm.gtn.com>
-#
+# Created by: Andreas Klemm <andreas@klemm.gtn.com>
 # $FreeBSD$
 
 PORTNAME=	gawk
@@ -37,7 +34,9 @@ CONFIGURE_ARGS+=--disable-nls
 PLIST_SUB+=	NLS="@comment "
 .endif
 
-post-extract:
+post-patch:
 	@${RM} -f ${WRKSRC}/doc/*.info
+	@${REINPLACE_CMD} -e 's/ -export-dynamic/ -Wl,--export-dynamic/' \
+		${WRKSRC}/configure
 
 .include <bsd.port.mk>
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Johan van Selst freebsd_committer freebsd_triage 2013-03-17 14:05:37 UTC
State Changed
From-To: open->closed

Committed, thanks.