]> spindle.queued.net Git - midori/commitdiff
Only pick up .vala files if Vala is available
authorChristian Dywan <christian@twotoasts.de>
Sun, 25 Apr 2010 21:36:53 +0000 (23:36 +0200)
committerChristian Dywan <christian@twotoasts.de>
Sun, 25 Apr 2010 21:39:00 +0000 (23:39 +0200)
extensions/wscript_build
tests/wscript_build

index aeaac361319d934724be56eda9e9dcfd6a5a0ecb..d3d3d9ca5bfb5e81384e6aa9f87c1d9c16e7a593 100644 (file)
@@ -14,7 +14,7 @@ for extension in extensions:
         for fila in files:
             if fila[-2:] == '.c':
                 source += ' ' + extension + os.sep + fila
-            elif fila[-5:] == '.vala':
+            elif 'VALAC' in bld.env and fila[-5:] == '.vala':
                 source += ' ' + extension + os.sep + fila
         if not source:
             Utils.pprint ('RED', folder + ': No source files found')
@@ -22,7 +22,7 @@ for extension in extensions:
     else:
         if extension[-2:] == '.c':
             target = extension[:-2]
-        elif extension[-5:] == '.vala':
+        elif 'VALAC' in bld.env and extension[-5:] == '.vala':
             target = extension[:-5]
         else:
             continue
index 5cd3ae4d6be9b9e2121a9506f2734c4a1813fd92..34825ad621fa912d4979dd69a60cf2d799d524e1 100644 (file)
@@ -14,7 +14,7 @@ for test in tests:
         for fila in files:
             if fila[-2:] == '.c':
                 source += ' ' + test + os.sep + fila
-            elif file[-5:] == '.vala':
+            elif 'VALAC' in bld.env and file[-5:] == '.vala':
                 source += ' ' + test + os.sep + fila
         if not source:
             Utils.pprint ('RED', folder + ': No source files found')
@@ -22,7 +22,7 @@ for test in tests:
     else:
         if test[-2:] == '.c':
             target = test[:-2]
-        elif test[-5:] == '.vala':
+        elif 'VALAC' in bld.env and test[-5:] == '.vala':
             target = test[:-5]
         else:
             continue