1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-15 11:52:15 +02:00

* bootstrap: Use the previously unused variable, $src,

to avoid repeating "$GNULIB_SRCDIR/$file".
This commit is contained in:
Jim Meyering
2006-09-08 08:59:31 +00:00
parent 926e64e021
commit fc1e25cfa5
2 changed files with 5 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
2006-09-08 Jim Meyering <jim@meyering.net>
* bootstrap: Use the previously unused variable, $src,
to avoid repeating "$GNULIB_SRCDIR/$file".
* bootstrap (cp_mark_as_generated): Don't use "local", to
accommodate ancient "/bin/sh". Suggested by Ralf Wildenhues.
Rename now-global "$src" and "$dst" to have cp_ prefix.

View File

@@ -337,8 +337,8 @@ for file in $gnulib_extra_files; do
*/INSTALL) dest=.;;
*) dest=$file;;
esac
echo "$0: cp -fp $GNULIB_SRCDIR/$file $dest" &&
cp -fp $GNULIB_SRCDIR/$file $dest || exit
echo "$0: cp -fp $src $dest" &&
cp -fp $src $dest || exit
done