diff options
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 |