diff options
author | dholland <dholland@pkgsrc.org> | 2012-04-30 21:54:59 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-04-30 21:54:59 +0000 |
commit | de341bf0f272e876246f4b53f58ee3ee694c55dd (patch) | |
tree | e89c8b839b4cd05472b73c844a0eae438b073e3a | |
parent | ee4c448a086df70f61b88ed2d0af32c44ed0f4be (diff) | |
download | pkgsrc-de341bf0f272e876246f4b53f58ee3ee694c55dd.tar.gz |
Update hack for new automake version.
-rw-r--r-- | emulators/b-em/hacks.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/emulators/b-em/hacks.mk b/emulators/b-em/hacks.mk index 0ee32110d80..8df50a033a5 100644 --- a/emulators/b-em/hacks.mk +++ b/emulators/b-em/hacks.mk @@ -1,15 +1,15 @@ -# $NetBSD: hacks.mk,v 1.2 2012/03/26 03:30:45 dholland Exp $ +# $NetBSD: hacks.mk,v 1.3 2012/04/30 21:54:59 dholland Exp $ # This package's distfile has the wonderful idea of containing -# symlinks to various things in /usr/share/automake-1.11/. What -# will they think of next? +# symlinks into /usr/share/automake-1.11/. What will they think of +# next? -BUILD_DEPENDS+= automake>=1.11<1.12:../../devel/automake +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.11/${FILE} ${WRKSRC}/${FILE} + cp ${PREFIX}/share/automake-1.12/${FILE} ${WRKSRC}/${FILE} .endfor |