From 7eb11c313a73d5516a2a1ce91fea5fea6f6b42d1 Mon Sep 17 00:00:00 2001 From: Ry Bobko Date: Mon, 24 Apr 2023 15:30:19 -0400 Subject: [PATCH] remove .exe from exestrip (cygwin) exestrip is called with a list of executables, but then adds .exe to the filenames. The result is XXX.exe.exe, which is never found. --- conf/exestrip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/exestrip b/conf/exestrip index 1a2aa484..90fa1a65 100755 --- a/conf/exestrip +++ b/conf/exestrip @@ -1,6 +1,6 @@ #!/bin/sh -for FILE in $* +for FILE in $ do - strip $FILE.exe + strip $FILE done