Browse Source

reconstruct module examples

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1430 bbd45198-f89e-11dd-88c7-29a3b14d5316
qiuyiuestc@gmail.com 14 years ago
parent
commit
6990871cb5

+ 1 - 1
examples/module/ftk_app/ftk_calculator/SConstruct

@@ -2,7 +2,7 @@ import os
 import sys
 
 EXEC_PATH = '/home/shaolin/CodeSourcery/Sourcery_G++_Lite/bin'
-RTT_ROOT = os.path.normpath(os.getcwd() + '/../../..')
+RTT_ROOT = os.path.normpath(os.getcwd() + '/../../../..')
 sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
 PREFIX = 'arm-none-eabi-'
 env = Environment(tools = ['mingw'],

+ 1 - 1
examples/module/ftk_app/ftk_demo/SConstruct

@@ -2,7 +2,7 @@ import os
 import sys
 
 EXEC_PATH = '/home/shaolin/CodeSourcery/Sourcery_G++_Lite/bin'
-RTT_ROOT = os.path.normpath(os.getcwd() + '/../../..')
+RTT_ROOT = os.path.normpath(os.getcwd() + '/../../../..')
 sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
 PREFIX = 'arm-none-eabi-'
 env = Environment(tools = ['mingw'],

+ 1 - 1
examples/module/rtgui_app/tetris/SConstruct

@@ -2,7 +2,7 @@ import os
 import sys
 
 EXEC_PATH = '/home/shaolin/CodeSourcery/Sourcery_G++_Lite/bin'
-RTT_ROOT = os.path.normpath(os.getcwd() + '/../../..')
+RTT_ROOT = os.path.normpath(os.getcwd() + '/../../../..')
 sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
 PREFIX = 'arm-none-eabi-'
 env = Environment(tools = ['mingw'],