diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-17 20:10:15 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-17 20:10:15 +0100 |
commit | f9011c1275b13f39e4ab4552173bfb91b2ffae56 (patch) | |
tree | 6a6cc8e0762a2da326e1657bda7308d6ffd3dc42 /mk | |
parent | dc06fc81176cf7bd6024e6bfc0666abdd0207fbf (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.mk | 5 |
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) |