summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-17 20:10:15 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-17 20:10:15 +0100
commitf9011c1275b13f39e4ab4552173bfb91b2ffae56 (patch)
tree6a6cc8e0762a2da326e1657bda7308d6ffd3dc42 /mk
parentdc06fc81176cf7bd6024e6bfc0666abdd0207fbf (diff)
fix build on OpenBSD host
- add a wrapper script for autoconf and autoreconf to avoid ifdef gluecode for every OS/autoconf combination - need to add more autoconf version for NetBSD/MirBSD
Diffstat (limited to 'mk')
-rw-r--r--mk/pkg-bottom.mk5
1 files changed, 1 insertions, 4 deletions
diff --git a/mk/pkg-bottom.mk b/mk/pkg-bottom.mk
index fa1baf5cb..604b0cc9d 100644
--- a/mk/pkg-bottom.mk
+++ b/mk/pkg-bottom.mk
@@ -24,13 +24,10 @@ ifneq ($(filter autogen,${AUTOTOOL_STYLE}),)
endif
ifneq ($(filter autotool,${AUTOTOOL_STYLE}),)
cd ${WRKBUILD}; \
- env AUTOCONF_VERSION=2.62 \
- AUTOMAKE_VERSION=1.9 \
autoreconf -vf;libtoolize $(MAKE_TRACE)
endif
ifneq ($(filter autoconf,${AUTOTOOL_STYLE}),)
- cd ${WRKBUILD}; \
- env AUTOCONF_VERSION=2.62 autoconf $(MAKE_TRACE)
+ cd ${WRKBUILD}; autoconf $(MAKE_TRACE)
endif
ifneq ($(filter manual,${CONFIG_STYLE}),)
env ${CONFIGURE_ENV} ${MAKE} do-configure $(MAKE_TRACE)