summaryrefslogtreecommitdiff
path: root/lang/fort77
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2007-11-02 08:52:38 +0000
committerrillig <rillig@pkgsrc.org>2007-11-02 08:52:38 +0000
commit37f2a25d53139cdd98d6a175863024a5e5886304 (patch)
tree78348b8cac3020f3c8d0027044e8713f275134d2 /lang/fort77
parentcaea365f8b8060181c13afda9d110d156b880fa0 (diff)
downloadpkgsrc-37f2a25d53139cdd98d6a175863024a5e5886304.tar.gz
Do not run arbitrary text substitutions on files in ${WRKDIR}/.*. This
made the wrapper scripts un-executable, causing the package to fail to build.
Diffstat (limited to 'lang/fort77')
-rw-r--r--lang/fort77/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/fort77/Makefile b/lang/fort77/Makefile
index 3c0d14e7bd6..c40c7a05b61 100644
--- a/lang/fort77/Makefile
+++ b/lang/fort77/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.17 2006/03/04 21:29:54 jlam Exp $
+# $NetBSD: Makefile,v 1.18 2007/11/02 08:52:38 rillig Exp $
#
DISTNAME= fort77-1.14a
@@ -26,7 +26,7 @@ BUILD_TARGET= test
USE_TOOLS+= perl:run
post-patch:
- for f in `${FIND} ${WRKDIR} -type f -print | ${XARGS} ${GREP} -l '/usr'`; \
+ for f in `${FIND} ${WRKDIR}/* -type f -print | ${XARGS} ${GREP} -l '/usr'`; \
do \
${SED} -e 's:/usr:'${PREFIX}':g' <$$f >$$f.pdone && \
${MV} $$f.pdone $$f; \