diff options
author | dholland <dholland> | 2012-07-28 07:13:05 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-07-28 07:13:05 +0000 |
commit | cacd740fb6afb81e90ce2f082f8d0a5dff39c3f9 (patch) | |
tree | afa8d3bafacbd081874ddcfae0b905e1f0a3491c /emulators | |
parent | 76c4bd4d17573e29288dce30e12ddc2cfdcb7b63 (diff) | |
download | pkgsrc-cacd740fb6afb81e90ce2f082f8d0a5dff39c3f9.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.mk | 12 |
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 |