From 44666525b7dd458f7b3c06ed48798d8f8b8a65f1 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 26 Mar 2015 15:57:34 +0100 Subject: [PATCH] Fixed location of map file (nw) --- scripts/genie.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/genie.lua b/scripts/genie.lua index 783ffbdb1b1..19ed8d9dbf4 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -462,11 +462,11 @@ end if _OPTIONS["MAP"] then if (_OPTIONS["target"] == _OPTIONS["subtarget"]) then linkoptions { - "-Wl,-Map," .. _OPTIONS["target"] .. ".map" + "-Wl,-Map," .. "../../../" .. _OPTIONS["target"] .. ".map" } else linkoptions { - "-Wl,-Map," .. _OPTIONS["target"] .. _OPTIONS["subtarget"] .. ".map" + "-Wl,-Map," .. "../../../" .. _OPTIONS["target"] .. _OPTIONS["subtarget"] .. ".map" } end