From 21ffcc74db3077b2cf298ace7445e5993300b2fe Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Mon, 17 Feb 2020 14:32:35 +0100 Subject: [PATCH] Don't use `echo -e` for creating the Wine shim Apparently that's not as portable as I expected. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9fcef6e9..e79d4474 100644 --- a/Makefile +++ b/Makefile @@ -237,7 +237,8 @@ mingw64: PKG_CONFIG=x86_64-w64-mingw32-pkg-config -j wine-shim: - $Qecho -e '#!/bin/sh\nWINEDEBUG=-all wine $$0.exe "$${@:1}"' > rgbshim.sh + $Qecho '#!/bin/sh' > rgbshim.sh + $Qecho 'WINEDEBUG=-all wine $$0.exe "$${@:1}"' >> rgbshim.sh $Qchmod +x rgbshim.sh $Qln -s rgbshim.sh rgbasm $Qln -s rgbshim.sh rgblink