diff options
author | 2015-12-19 20:00:22 -0500 | |
---|---|---|
committer | 2015-12-19 20:00:22 -0500 | |
commit | ad4d85f68fe78b2e10a913f7198b78cb362882eb (patch) | |
tree | bd080ec270d7b847df6761d35f81469bca691dad /scripts/genie.lua | |
parent | de31dfcf585a4eb4d4eb7565f2c61b831188ce52 (diff) |
Fixed wrong number of arguments to makedep.py in SOURCES build
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index b8ccd9d5df9..c77bd43b52c 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -528,7 +528,7 @@ if (_OPTIONS["SOURCES"] == nil) then else OUT_STR = os.outputof( PYTHON .. " " .. _MAKE.esc(MAME_DIR) .. "scripts/build/makedep.py " .. _MAKE.esc(MAME_DIR) .. " " .. _OPTIONS["SOURCES"] .. " target " .. _OPTIONS["subtarget"]) load(OUT_STR)() - os.outputof( PYTHON .. " " .. _MAKE.esc(MAME_DIR) .. "scripts/build/makedep.py " .. _MAKE.esc(MAME_DIR).. _OPTIONS["SOURCES"] .. " drivers " .. _OPTIONS["subtarget"] .. " > ".. _MAKE.esc(GEN_DIR) .. _OPTIONS["target"] .. "/" .. _OPTIONS["subtarget"].."/drivlist.cpp") + os.outputof( PYTHON .. " " .. _MAKE.esc(MAME_DIR) .. "scripts/build/makedep.py " .. _MAKE.esc(MAME_DIR) .. " " .. _OPTIONS["SOURCES"] .. " drivers " .. _OPTIONS["subtarget"] .. " > " .. _MAKE.esc(GEN_DIR) .. _OPTIONS["target"] .. "/" .. _OPTIONS["subtarget"] .. "/drivlist.cpp") end configuration { "gmake" } flags { |