]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtoolize.m4sh (func_copy_cb): self.leg->shoot_off() :-/
authorGary V. Vaughan <gary@gnu.org>
Tue, 22 Feb 2005 17:19:49 +0000 (17:19 +0000)
committerGary V. Vaughan <gary@gnu.org>
Tue, 22 Feb 2005 17:19:49 +0000 (17:19 +0000)
Let's not redirect stdout to null when sending tar output to a
pipe.

ChangeLog
libtoolize.m4sh

index f75e95cdee983552f071e3540e3b78a40bb5603a..cc19ec8926941ebf365a76fc10424466bd6bf023 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
-2005-02-21  Gary V. Vaughan  <gary@gnu.org>
+2005-02-22  Gary V. Vaughan  <gary@gnu.org>
+
+       * libtoolize.m4sh (func_copy_cb): self.leg->shoot_off() :-/
+       Let's not redirect stdout to null when sending tar output to a
+       pipe.
+
+2005-02-22  Gary V. Vaughan  <gary@gnu.org>
 
        Using `libtoolize --copy --ltdl' was not preserving timestamps, so
        parts of the autoconf bootstrap would be rerun spuriously after
index 9f4386b111c80d5d793b27ca7bec566a30954856..3c9119b8ada5be720f05907ba56fd8be8b93c996 100644 (file)
@@ -241,7 +241,7 @@ func_copy_cb ()
     if $opt_link && $LN_S "$my_srcdir/$my_file" "$my_destdir/$my_file"; then
       $opt_quiet || func_echo "copying file \`$my_destdir/$my_file'"
       copy_return_status=0
-    elif { ( cd "$my_srcdir" && $TAR cf - "$my_file" > /dev/null 2>&1; ) \
+    elif { ( cd "$my_srcdir" && $TAR cf - "$my_file" 2>/dev/null; ) \
         | ( cd "$my_destdir" && "$TAR" xf - > /dev/null 2>&1; ) } ; then
       $opt_quiet || func_echo "copying file \`$my_destdir/$my_file'"
       copy_return_status=0