From 00a2679325bc5f5637dbf8995256e5d085c3036e Mon Sep 17 00:00:00 2001 From: Karim DRIDI Date: Fri, 12 Mar 2021 15:29:47 +0100 Subject: [PATCH] make it compilable on case-sensitive systems --- bsnes/target-bsnes/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsnes/target-bsnes/GNUmakefile b/bsnes/target-bsnes/GNUmakefile index c693a2ed..f8f9fd2b 100644 --- a/bsnes/target-bsnes/GNUmakefile +++ b/bsnes/target-bsnes/GNUmakefile @@ -31,7 +31,7 @@ ifeq ($(platform),macos) mkdir -p out/$(name).app/Contents/Resources/ mv out/$(name) out/$(name).app/Contents/MacOS/$(name) cp Database/* out/$(name).app/Contents/MacOS/Database/ - cp -r ../shaders/* out/$(name).app/Contents/macOS/Shaders/ + cp -r ../shaders/* out/$(name).app/Contents/MacOS/Shaders/ cp $(ui)/resource/$(name).plist out/$(name).app/Contents/Info.plist sips -s format icns $(ui)/resource/$(name).png --out out/$(name).app/Contents/Resources/$(name).icns endif