summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2012-07-28 07:13:05 +0000
committerdholland <dholland@pkgsrc.org>2012-07-28 07:13:05 +0000
commite2aa47bc780c378738b548fe52accdc47d4d8fea (patch)
treeafa8d3bafacbd081874ddcfae0b905e1f0a3491c /emulators
parent9e2eca6fd8403b33a9197d399126e08145b2060c (diff)
downloadpkgsrc-e2aa47bc780c378738b548fe52accdc47d4d8fea.tar.gz
pkglint.
(why does pkglint think .for variables shouldn't use uppercase letters? that seems completely silly)
Diffstat (limited to 'emulators')
-rw-r--r--emulators/b-em/hacks.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/emulators/b-em/hacks.mk b/emulators/b-em/hacks.mk
index 8df50a033a5..e7766f767d0 100644
--- a/emulators/b-em/hacks.mk
+++ b/emulators/b-em/hacks.mk
@@ -1,4 +1,4 @@
-# $NetBSD: hacks.mk,v 1.3 2012/04/30 21:54:59 dholland Exp $
+# $NetBSD: hacks.mk,v 1.4 2012/07/28 07:13:05 dholland Exp $
# This package's distfile has the wonderful idea of containing
# symlinks into /usr/share/automake-1.11/. What will they think of
@@ -7,9 +7,9 @@
BUILD_DEPENDS+= automake>=1.12<1.13:../../devel/automake
post-extract:
- @echo 'Fixing symlinks to external files'
-.for FILE in compile COPYING depcomp INSTALL
- [ -h ${WRKSRC}/${FILE} ] || exit 1
- rm -f ${WRKSRC}/${FILE}
- cp ${PREFIX}/share/automake-1.12/${FILE} ${WRKSRC}/${FILE}
+ @${ECHO} 'Fixing symlinks to external files'
+.for file in compile COPYING depcomp INSTALL
+ [ -h ${WRKSRC}/${file} ] || exit 1
+ rm -f ${WRKSRC}/${file}
+ cp ${PREFIX}/share/automake-1.12/${file} ${WRKSRC}/${file}
.endfor