2008-07-27 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Sun, 27 Jul 2008 15:13:28 +0000 (15:13 -0000)
committerZoltan Varga <vargaz@gmail.com>
Sun, 27 Jul 2008 15:13:28 +0000 (15:13 -0000)
* scripts/patch-quiet.sh: Make the libtool --quiet flag configurable by
V=1 as well.

svn path=/trunk/mono/; revision=108942

ChangeLog
scripts/patch-quiet.sh

index 2af24883eeaddd0cc8fbcd44197af16e1e7b508f..c04961115f04aaff17c5588e70b5cdc89166f049 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-27  Zoltan Varga  <vargaz@gmail.com>
+
+       * scripts/patch-quiet.sh: Make the libtool --quiet flag configurable by
+       V=1 as well.
+
 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
 
        * configure.in: Patch libtool to avoid the 
index 9c18d6db2f08ce3f6ff93025229568a412894e0c..a62c296d539884a68f2eb9abd4b149acf5f78400 100755 (executable)
@@ -23,7 +23,7 @@ sed -e 's/^\t$(CC)/\t$(if $(V),,@echo -e "CC\\t$@";) $(CC)/g' < $src > $src.tmp
 # mv
 sed -e 's/\tmv -f/\t$(if $(V),,@)mv -f/g' < $src > $src.tmp && cp $src.tmp $src && rm -f $src.tmp
 # libtool messages
-sed -e 's/\$(LIBTOOL)/$(LIBTOOL) --quiet/g' < $src > $src.tmp && cp $src.tmp $src && rm -f $src.tmp
+sed -e 's/\$(LIBTOOL)/$(LIBTOOL) $(if $(V),,--quiet)/g' < $src > $src.tmp && cp $src.tmp $src && rm -f $src.tmp
 
 # FIXME: libtool message which is not silenced by --quiet:
 # $echo "copying selected object files to avoid basename conflicts..."
\ No newline at end of file