From e1b5d48c9ba74686ddaed2fb6ada32e2f14077c6 Mon Sep 17 00:00:00 2001 From: "goprife@gmail.com" Date: Tue, 31 Jan 2012 01:41:14 +0000 Subject: [PATCH] fix bugs in building.py that is when DefineGroup method's 3rd arges "CPPDEFINES" is not null, then "scons --target=mdk -s" will get errors. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1930 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- tools/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/building.py b/tools/building.py index ed278b83b..c06159be3 100644 --- a/tools/building.py +++ b/tools/building.py @@ -261,7 +261,7 @@ def MDK4Project(target, script): # get each group's definitions if group.has_key('CPPDEFINES') and group['CPPDEFINES']: if CPPDEFINES: - CPPDEFINES += ';' + group['CPPDEFINES'] + CPPDEFINES += group['CPPDEFINES'] else: CPPDEFINES += group['CPPDEFINES'] -- GitLab