summaryrefslogtreecommitdiff
path: root/emulators/b-em
diff options
context:
space:
mode:
authordholland <dholland>2012-04-30 21:54:59 +0000
committerdholland <dholland>2012-04-30 21:54:59 +0000
commitddcd7d5f293f28e6f9b484a10f0188b174af7fbd (patch)
treee89c8b839b4cd05472b73c844a0eae438b073e3a /emulators/b-em
parent4ea181eab377b51d020854901a4bed0a27bea46b (diff)
downloadpkgsrc-ddcd7d5f293f28e6f9b484a10f0188b174af7fbd.tar.gz
Update hack for new automake version.
Diffstat (limited to 'emulators/b-em')
-rw-r--r--emulators/b-em/hacks.mk10
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