SVN commit 497601 by helluy: - cleanup scons output (the very last one since I don't know howto turn green the output of the pkg-config tests M +2 -2 libbeagle.py M +1 -1 lucene.py --- trunk/playground/ioslaves/kwest/bksys/libbeagle.py #497600:497601 @@ -54,11 +54,11 @@ conf = env.Configure (custom_tests = { 'CheckPKGConfig' : CheckPKGConfig, 'CheckPKG' : CheckPKG }) if not conf.CheckPKGConfig(): - print 'pkg-config not found.' + print RED+'pkg-config not found.'+NORMAL env.Exit(1) if not conf.CheckPKG('libbeagle-0.0 >= %s' % LIBBEAGLE_MIN_VERSION): - print 'libbeagle >= %s not found. Install libbeagle for beagle backend.' % LIBBEAGLE_MIN_VERSION + print RED+'libbeagle >= %s not found. Install libbeagle for beagle backend.' % LIBBEAGLE_MIN_VERSION+NORMAL env.Exit (1) print '' env = conf.Finish () --- trunk/playground/ioslaves/kwest/bksys/lucene.py #497600:497601 @@ -64,7 +64,7 @@ # env.Exit(1) else: - print GREEN+'looks good, but cannot check it is clucene-0.9.10 or higer'+NORMAL + print GREEN+'looks good, but cannot check it is the requested clucene-0.8.13 release'+NORMAL env['HASLUCENE']=1 #env = conf.Finish() print ''