]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtoolize.m4sh (func_copy_cb): Fix syntax typo.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 17 Apr 2005 06:50:25 +0000 (06:50 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 17 Apr 2005 06:50:25 +0000 (06:50 +0000)
ChangeLog
libtoolize.m4sh

index 9a5df9752eab9643edf236fde9debf156f09c057..e821d6df4cac11bf4ca6e5166d476df3d902ff95 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
+
+       * libtoolize.m4sh (func_copy_cb): Fix syntax typo.
+
 2005-04-15  Maciej W. Rozycki  <macro@linux-mips.org>
 
        * m4/libtool.m4 (_LT_LANG_GCJ_CONFIG): Add old_archive_cmds
index 55fc7b924b20920ec406cb883926af51ab69001f..eaa9db9ea166ee9b6bdc838f847714807489cd15 100644 (file)
@@ -232,7 +232,7 @@ func_copy_cb ()
       $opt_quiet || func_echo "copying file \`$my_destdir/$my_file'"
       copy_return_status=0
     elif { ( cd "$my_srcdir" 2>/dev/null && $TAR chf - "$my_file" 2>/dev/null; ) \
-        | ( umask 0 && cd "$my_destdir" 2>/dev/null && "$TAR" xf - > /dev/null 2>&1; ) } ; then
+        | ( umask 0 && cd "$my_destdir" 2>/dev/null && "$TAR" xf - > /dev/null 2>&1; ); } ; then
       $opt_quiet || func_echo "copying file \`$my_destdir/$my_file'"
       copy_return_status=0
     elif $CP -p "$my_srcdir/$my_file" "$my_destdir/$my_file"; then