From cbfe1d64de7750de34a13c85b704f26184884c07 Mon Sep 17 00:00:00 2001 From: "qiuyiuestc@gmail.com" Date: Wed, 5 Oct 2011 00:52:30 +0000 Subject: [PATCH] fix module compile error when RTT_ROOT variable not to be set git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1738 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- examples/module/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/module/SConstruct b/examples/module/SConstruct index dae629217..47bff46f1 100644 --- a/examples/module/SConstruct +++ b/examples/module/SConstruct @@ -6,7 +6,7 @@ import rtconfig if os.getenv('RTT_ROOT'): RTT_ROOT = os.getenv('RTT_ROOT') else: - RTT_ROOT = os.path.normpath(os.getcwd() + '/../../..') + RTT_ROOT = os.path.normpath(os.getcwd() + '/../..') sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')] from building import *