summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2012-09-10 11:52:37 +0200
committerLuca Barbato <lu_zero@gentoo.org>2012-09-10 12:17:42 +0200
commit78548095b65f3add7ca7acb92b9d7ad2b8e0c8aa (patch)
treed9e02270e294e21533f5a977d543f8356809492a
parentb79f531ae99349e62ed2342f9ec8d542b70f6136 (diff)
dolt: support silent rules in fallback
If the platform is not supported provide LTCOMPILE and LTCXXCOMPILE with the silent rule marker as well.
-rw-r--r--dolt.m45
1 files changed, 3 insertions, 2 deletions
diff --git a/dolt.m4 b/dolt.m4
index 530c137..d0fce08 100644
--- a/dolt.m4
+++ b/dolt.m4
@@ -38,8 +38,9 @@ i?86-apple-darwin*)
esac
if test x$dolt_supported = xno ; then
AC_MSG_RESULT([no, falling back to libtool])
- LTCOMPILE='$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(COMPILE)'
- LTCXXCOMPILE='$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXXCOMPILE)'
+ LTCOMPILE='$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(COMPILE)'
+ LTCXXCOMPILE='$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXXCOMPILE)'
+ m4_pattern_allow([AM_V_lt])
else
AC_MSG_RESULT([yes, replacing libtool])