From c3854e20bbe249bdc12547a2e0ba8048fb6d4d80 Mon Sep 17 00:00:00 2001 From: "bernard.xiong" Date: Mon, 4 Jul 2011 06:39:32 +0000 Subject: [PATCH] fix the output message. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1606 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- tools/building.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/building.py b/tools/building.py index ad1430ecb3..3a0c663193 100644 --- a/tools/building.py +++ b/tools/building.py @@ -569,7 +569,7 @@ def EndBuilding(target): if GetOption('target') == 'mdk': template = os.path.isfile('template.Uv2') if rtconfig.CROSS_TOOL != 'keil': - print 'Please use Keil MDK compiler in rtconfig.h' + print 'Please use Keil MDK compiler in rtconfig.py' return if template: @@ -583,12 +583,12 @@ def EndBuilding(target): if GetOption('target') == 'mdk4': if rtconfig.CROSS_TOOL != 'keil': - print 'Please use Keil MDK compiler in rtconfig.h' + print 'Please use Keil MDK compiler in rtconfig.py' return MDK4Project('project.uvproj', Projects) if GetOption('target') == 'iar': if rtconfig.CROSS_TOOL != 'iar': - print 'Please use IAR compiler in rtconfig.h' + print 'Please use IAR compiler in rtconfig.py' return IARProject('project.ewp', Projects)