Fix for last commit
g0dil [Fri, 18 Sep 2009 13:09:44 +0000 (13:09 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1427 270642c3-0616-0410-b53a-bc976706d245

site_scons/senfutil.py

index 1ac5680..71683ba 100644 (file)
@@ -178,9 +178,9 @@ def Glob(env, exclude=[], subdirs=[]):
                 for x in env.Glob("*.cc", strings=True) 
                 if x not in testSources and x not in exclude ]
     for subdir in subdirs:
-        testSources += env.Glob(os.path.join(subdir,"*.test.cc", strings=True))
+        testSources += env.Glob(os.path.join(subdir,"*.test.cc"), strings=True)
         sources += [ x 
-                     for x in env.Glob(os.path.join(subdir,"*.cc", strings=True))
+                     for x in env.Glob(os.path.join(subdir,"*.cc"), strings=True)
                      if x not in testSources and x not in exclude ]
     sources.sort()
     testSources.sort()