diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-06-17 22:39:57 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-06-18 09:10:38 +0200 |
commit | 7caebb383841507b52437cebe39f90905832ded1 (patch) | |
tree | a9fbfb3f8cc2d144aa1b26921738c9652b4b735d | |
parent | f6339ffd077ded64b82908dab99f0d201bc360c0 (diff) |
less verbose, too much noise
-rw-r--r-- | mk/pkg-bottom.mk | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/mk/pkg-bottom.mk b/mk/pkg-bottom.mk index cc17c1202..d45c9bc94 100644 --- a/mk/pkg-bottom.mk +++ b/mk/pkg-bottom.mk @@ -18,16 +18,20 @@ do-configure: post-configure: ${_CONFIGURE_COOKIE}: ${_PATCH_COOKIE} ifneq (,$(filter bootstrap,${AUTOTOOL_STYLE})) - cd ${WRKSRC}; env ${AUTOTOOL_ENV} $(BASH) bootstrap.sh $(MAKE_TRACE) + @$(CMD_TRACE) "autotool configuring... " + @cd ${WRKSRC}; env ${AUTOTOOL_ENV} $(BASH) bootstrap.sh $(MAKE_TRACE) endif ifneq (,$(filter autogen,${AUTOTOOL_STYLE})) - cd ${WRKSRC}; env ${AUTOTOOL_ENV} $(BASH) autogen.sh $(MAKE_TRACE) + @$(CMD_TRACE) "autotool configuring... " + @cd ${WRKSRC}; env ${AUTOTOOL_ENV} $(BASH) autogen.sh $(MAKE_TRACE) endif ifneq (,$(filter autoconf,${AUTOTOOL_STYLE})) - cd ${WRKSRC}; env ${AUTOTOOL_ENV} autoconf $(MAKE_TRACE) + @$(CMD_TRACE) "autotool configuring... " + @cd ${WRKSRC}; env ${AUTOTOOL_ENV} autoconf $(MAKE_TRACE) endif ifneq (,$(filter autoreconf,${AUTOTOOL_STYLE})) - @cd ${WRKSRC}; env ${AUTOTOOL_ENV} autoreconf -if $(MAKE_TRACE) + @$(CMD_TRACE) "autotool configuring... " + @cd ${WRKSRC}; env ${AUTOTOOL_ENV} autoreconf -vif 2>/dev/null @rm -rf ${WRKSRC}/autom4te.cache @touch ${WRKDIR}/.autoreconf_done endif |