diff options
author | Jim Meyering <jim@meyering.net> | 2006-09-08 08:59:31 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-09-08 08:59:31 +0000 |
commit | fc1e25cfa5d3dd30062ec481e44a90e66a40a6aa (patch) | |
tree | 2f75a114f7065cf6a968dc25846ab8d865bef99b /bootstrap | |
parent | 926e64e0210dad275c150d1d599c021412d7e1f6 (diff) | |
download | coreutils-fc1e25cfa5d3dd30062ec481e44a90e66a40a6aa.tar.xz |
* bootstrap: Use the previously unused variable, $src,
to avoid repeating "$GNULIB_SRCDIR/$file".
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |