Index: Source/core/scripts/action_derivedsourcesallinone.py |
diff --git a/Source/core/scripts/action_derivedsourcesallinone.py b/Source/core/scripts/action_derivedsourcesallinone.py |
index fec5088917a9e24775662d03a2aa2a5b268422d1..91a1342bcd9731b1eba08faecf5565d957acd1bf 100644 |
--- a/Source/core/scripts/action_derivedsourcesallinone.py |
+++ b/Source/core/scripts/action_derivedsourcesallinone.py |
@@ -202,6 +202,8 @@ def main(args): |
idlFileNames = [] |
cygdriveNames = [] |
for line in inputFile: |
+ if line.find('testing') != -1: |
do-not-use
2013/09/11 12:54:24
I am not a fan of hardcoding such things in the sc
kihong
2013/09/14 04:14:43
I removed whole hardcoding things.
|
+ continue |
idlFileName = line.rstrip().split(' ')[0] |
if idlFileName.startswith("/cygdrive"): |
Nils Barth (inactive)
2013/09/12 03:47:17
Also, could you fix these quotes to single quotes?
kihong
2013/09/14 04:14:43
Done.
|
cygdriveNames.append(idlFileName) |