swig: Use SWIG from environment when determining version
authorAndreas Hansson <andreas.hansson@arm.com>
Wed, 20 Jun 2012 23:32:42 +0000 (19:32 -0400)
committerAndreas Hansson <andreas.hansson@arm.com>
Wed, 20 Jun 2012 23:32:42 +0000 (19:32 -0400)
This patch fixes a minor issue in the SConstruct where a hardcoded
swig is used instead of the environment SWIG when determining the
version.

SConstruct

index 1b46e4a4cee9982e07124e0ca4096f28ce4c7002..b334959393959a02c6979b59fe0add936450ce8e 100755 (executable)
@@ -580,7 +580,7 @@ if not main.has_key('SWIG'):
     Exit(1)
 
 # Check for appropriate SWIG version
-swig_version = readCommand(('swig', '-version'), exception='').split()
+swig_version = readCommand([main['SWIG'], '-version'], exception='').split()
 # First 3 words should be "SWIG Version x.y.z"
 if len(swig_version) < 3 or \
         swig_version[0] != 'SWIG' or swig_version[1] != 'Version':