Test for nonexistance of files before trying to mv them.
This commit is contained in:
parent
952131da03
commit
3a63a5f515
1 changed files with 6 additions and 2 deletions
8
configure
vendored
8
configure
vendored
|
@ -506,7 +506,9 @@ for subdir in . ${subdirs} ; do
|
|||
|
||||
# Make the links.
|
||||
configlinks="${links}"
|
||||
mv -f config.status config.back
|
||||
if [ -r config.status ] ; then
|
||||
mv -f config.status config.back
|
||||
fi
|
||||
while [ -n "${files}" ] ; do
|
||||
# set file to car of files, files to cdr of files
|
||||
set ${files}; file=$1; shift; files=$*
|
||||
|
@ -724,7 +726,9 @@ ${progname}" ${arguments} "
|
|||
# ${using}" > ${subdir}/config.new
|
||||
fi
|
||||
chmod a+x ${subdir}/config.new
|
||||
mv -f config.back config.status
|
||||
if [ -r config.back ] ; then
|
||||
mv -f config.back config.status
|
||||
fi
|
||||
${moveifchange} config.new config.back
|
||||
;;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue