* libtoolize.m4sh (func_copy_cb): Fix syntax typo.

This commit is contained in:
Ralf Wildenhues 2005-04-17 06:50:25 +00:00
parent e48c58afb0
commit 9bfed72522
2 changed files with 5 additions and 1 deletions

View File

@ -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

View 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