summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-29 10:32:23 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-29 10:32:23 +0100
commit21795cc1a20760ff37bca88b799fef664e70ccf2 (patch)
treeb394e6a82614f8be05a9d4af5721b047cbbf25b1 /mk
parent303f5c0994a6ff6c7d3bee7c29f94928ae5674de (diff)
convert tslib to autotool infrastructure, downgrade m4, newest version have problems generating correct Makefiles
Diffstat (limited to 'mk')
-rw-r--r--mk/buildhlp.mk2
-rw-r--r--mk/pkg-bottom.mk6
2 files changed, 4 insertions, 4 deletions
diff --git a/mk/buildhlp.mk b/mk/buildhlp.mk
index 8b6a4a8c8..64945c158 100644
--- a/mk/buildhlp.mk
+++ b/mk/buildhlp.mk
@@ -95,7 +95,7 @@ else
endif
@-test -r ${WRKDIR}/.autoreconf_done && \
(cd ${WRKDIR}.orig/${PKG_NAME}-${PKG_VERSION}; \
- env ${AUTOTOOL_ENV} autoreconf -if)
+ env ${AUTOTOOL_ENV} autoreconf -if) $(MAKE_TRACE)
@rm -rf ${WRKDIR}.orig/${PKG_NAME}-${PKG_VERSION}/autom4te.cache
@# restore config.sub/config.guess
@for i in $$(find ${WRKDIR}.orig -name config.sub);do \
diff --git a/mk/pkg-bottom.mk b/mk/pkg-bottom.mk
index bf8ed4ea3..34e5405a8 100644
--- a/mk/pkg-bottom.mk
+++ b/mk/pkg-bottom.mk
@@ -18,9 +18,9 @@ do-configure:
post-configure:
${_CONFIGURE_COOKIE}: ${_PATCH_COOKIE}
ifneq (,$(filter autoreconf,${AUTOTOOL_STYLE}))
- cd ${WRKSRC}; env ${AUTOTOOL_ENV} autoreconf -if
- rm -rf ${WRKSRC}/autom4te.cache
- touch ${WRKDIR}/.autoreconf_done
+ cd ${WRKSRC}; env ${AUTOTOOL_ENV} autoreconf -if $(MAKE_TRACE)
+ @rm -rf ${WRKSRC}/autom4te.cache
+ @touch ${WRKDIR}/.autoreconf_done
endif
mkdir -p ${WRKBUILD}
@${MAKE} pre-configure $(MAKE_TRACE)