summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-09-08 08:59:31 +0000
committerJim Meyering <jim@meyering.net>2006-09-08 08:59:31 +0000
commitfc1e25cfa5d3dd30062ec481e44a90e66a40a6aa (patch)
tree2f75a114f7065cf6a968dc25846ab8d865bef99b /bootstrap
parent926e64e0210dad275c150d1d599c021412d7e1f6 (diff)
downloadcoreutils-fc1e25cfa5d3dd30062ec481e44a90e66a40a6aa.tar.xz
* bootstrap: Use the previously unused variable, $src,
to avoid repeating "$GNULIB_SRCDIR/$file".
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap b/bootstrap
index 32bc478cf..d4f65142e 100755
--- 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