From 3396ac0a0c897e13dba4b9d427073f48c9864d36 Mon Sep 17 00:00:00 2001 From: Andreas Fredriksson Date: Mon, 5 Dec 2016 08:53:40 -0800 Subject: [PATCH] yasm: actually add include path to command line --- scripts/tundra/tools/yasm.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tundra/tools/yasm.lua b/scripts/tundra/tools/yasm.lua index fe01c557..239d48aa 100644 --- a/scripts/tundra/tools/yasm.lua +++ b/scripts/tundra/tools/yasm.lua @@ -6,7 +6,7 @@ function apply(env, options) env:set_many { ["YASM"] = "yasm", - ["ASMCOM"] = "$(YASM) -o $(@) $(ASMDEFS:p-D ) $(ASMOPTS) $(<)", + ["ASMCOM"] = "$(YASM) -o $(@) $(ASMDEFS:p-D ) $(ASMINCPATH:p-I ) $(ASMOPTS) $(<)", ["ASMINC_KEYWORDS"] = { "%include" }, } end