From 229a95ea08dfa4cf1d74b88763db47569c7e63d4 Mon Sep 17 00:00:00 2001 From: "gyeongmin.ju" Date: Wed, 6 Sep 2017 19:55:13 +0900 Subject: [PATCH] RT: fixed toolchain path bug for build cmd Signed-off-by: gyeongmin.ju --- .../src/org/tizen/rt/ide/commands/BuildCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rt-ide/tizen.rt.product.plugin/src/org/tizen/rt/ide/commands/BuildCommand.java b/rt-ide/tizen.rt.product.plugin/src/org/tizen/rt/ide/commands/BuildCommand.java index c4a43ff..5e747b2 100644 --- a/rt-ide/tizen.rt.product.plugin/src/org/tizen/rt/ide/commands/BuildCommand.java +++ b/rt-ide/tizen.rt.product.plugin/src/org/tizen/rt/ide/commands/BuildCommand.java @@ -109,7 +109,7 @@ public class BuildCommand extends AbstractCommand { buildScript.addMacro("BUILD_OPTION", buildOption.getBuildOption()); //$NON-NLS-1$ } if (toolchainPath != null) { - buildScript.addMacro("TOOLCHAIN", setting.getToolchainPath()); //$NON-NLS-1$ + buildScript.addMacro("TOOLCHAIN_PATH", setting.getToolchainPath()); //$NON-NLS-1$ } String buildCmdName; -- 2.7.4