summaryrefslogtreecommitdiff
path: root/emulators/mame/files/patch-scripts_src_main.lua
blob: 391ffc7f10fbaae1b47306dea0f72d5133d4fbe1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 Remove suffixes from mame binary for debug/profile builds.

--- scripts/src/main.lua.orig	2023-11-14 03:17:20 UTC
+++ scripts/src/main.lua
@@ -58,13 +58,13 @@ end
 	configuration { "Release" }
 		targetsuffix ""
 		if _OPTIONS["PROFILE"] then
-			targetsuffix "p"
+			targetsuffix ""
 		end
 
 	configuration { "Debug" }
-		targetsuffix "d"
+		targetsuffix ""
 		if _OPTIONS["PROFILE"] then
-			targetsuffix "dp"
+			targetsuffix ""
 		end
 
 	configuration { "mingw*" or "vs20*" }