libtiff: autogen.sh: mv -f for config.sub and config.guess

https://github.com/libsdl-org/libtiff/commit/2f5abb1dff18d42f0ce3a47911d84d81d11cb2b8

From 2f5abb1dff18d42f0ce3a47911d84d81d11cb2b8 Mon Sep 17 00:00:00 2001
From: Will Cohen <[EMAIL REDACTED]>
Date: Wed, 19 Jan 2022 17:21:25 -0500
Subject: [PATCH] autogen.sh: mv -f for config.sub and config.guess

---
 autogen.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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