]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* bootstrap: Use the previously unused variable, $src,
authorJim Meyering <jim@meyering.net>
Fri, 8 Sep 2006 08:59:31 +0000 (08:59 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 8 Sep 2006 08:59:31 +0000 (08:59 +0000)
to avoid repeating "$GNULIB_SRCDIR/$file".

ChangeLog
bootstrap

index a7749a98b2202bd87b9102d3cfaf063fa3d67ebf..591d4c03da70108b95ba1da5125577a5158a2f8f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 32bc478cf129eed084a208a53eb91cabcf10d1a5..d4f65142ea69fcbeda7ff48f92429c344dea2bdd 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -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