From 581c7635e1d04db5a7d3bd487e1fcb3b91be79eb Mon Sep 17 00:00:00 2001 From: Yves Date: Thu, 13 Feb 2014 15:21:14 +0000 Subject: [PATCH] Makes our favourite example of escaping even more awesome. Codeblocks 12.11 requires an additional $ sign. This will break 10.05 and I haven't tested it with 13.12 or on other systems than Ubuntu. This was SVN commit r14748. --- build/premake/premake4.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/premake/premake4.lua b/build/premake/premake4.lua index a2b44a518a..f489ff05e0 100644 --- a/build/premake/premake4.lua +++ b/build/premake/premake4.lua @@ -370,7 +370,7 @@ function project_set_build_flags() if _ACTION == "gmake" then linkoptions { "-Wl,-rpath,'$$ORIGIN'" } elseif _ACTION == "codeblocks" then - linkoptions { "-Wl,-R\\\\$$ORIGIN" } + linkoptions { "-Wl,-R\\\\$$$ORIGIN" } end end end