From: Gary V. Vaughan Date: Tue, 22 Feb 2005 17:19:49 +0000 (+0000) Subject: * libtoolize.m4sh (func_copy_cb): self.leg->shoot_off() :-/ X-Git-Tag: release-2-1b~748 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6ca58cc9749281dcf4db5e480d7abf56241a058;p=thirdparty%2Flibtool.git * libtoolize.m4sh (func_copy_cb): self.leg->shoot_off() :-/ Let's not redirect stdout to null when sending tar output to a pipe. --- diff --git a/ChangeLog b/ChangeLog index f75e95cde..cc19ec892 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,10 @@ -2005-02-21 Gary V. Vaughan +2005-02-22 Gary V. Vaughan + + * 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 Using `libtoolize --copy --ltdl' was not preserving timestamps, so parts of the autoconf bootstrap would be rerun spuriously after diff --git a/libtoolize.m4sh b/libtoolize.m4sh index 9f4386b11..3c9119b8a 100644 --- a/libtoolize.m4sh +++ b/libtoolize.m4sh @@ -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