From 8b9ce14af04de13b817b752ebdc9bb26867dc79d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Julien=20=C3=89LIE?= Date: Fri, 21 Mar 2025 00:15:45 +0200 Subject: [PATCH] ltmain.in: Supporting -S and -t flags from install-sh Libtool silently discards options for install-sh that have not been specified. Now the install directory and a suffix for backing up files can be specified to be passed through libtool. Reported: https://savannah.gnu.org/patch/index.php?10510 * build-aux/ltmain.in: Recognize -S and -t flags from install-sh. --- build-aux/ltmain.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in index 36a85b9e1..aaf48f14b 100644 --- a/build-aux/ltmain.in +++ b/build-aux/ltmain.in @@ -2396,7 +2396,7 @@ func_mode_install () prev=$arg fi ;; - -g | -m | -o) + -g | -m | -o | -S | -t) prev=$arg ;; -s) -- 2.47.3