summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Cohen <willcohen@users.noreply.github.com>2022-01-19 17:21:25 -0500
committerWill Cohen <willcohen@users.noreply.github.com>2022-01-19 17:21:25 -0500
commit2f5abb1dff18d42f0ce3a47911d84d81d11cb2b8 (patch)
treeb5bf8a27e954e687c776245bc2ffaf5c1fdac2e6
parent8a481db9b52658b91d6b8d3053192b5617c56e78 (diff)
downloadlibtiff-git-2f5abb1dff18d42f0ce3a47911d84d81d11cb2b8.tar.gz
autogen.sh: mv -f for config.sub and config.guess
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 9ef71b53..2882bfc7 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -12,7 +12,7 @@ do
echo "$0: getting $file..."
wget -q --timeout=5 -O config/$file.tmp \
"https://git.savannah.gnu.org/cgit/config.git/plain/${file}" \
- && mv config/$file.tmp config/$file \
+ && mv -f config/$file.tmp config/$file \
&& chmod a+x config/$file
retval=$?
rm -f config/$file.tmp