Hopefully fix up build system after my previous changes.
authorCarl Hetherington <carl@carlh.net>
Thu, 28 Oct 2010 17:16:17 +0000 (17:16 +0000)
committerCarl Hetherington <carl@carlh.net>
Thu, 28 Oct 2010 17:16:17 +0000 (17:16 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@7936 d708f5d6-7413-0410-9779-e7cbd77b26cf

wscript

diff --git a/wscript b/wscript
index 19fb5fb6697f0334c91727e86c9f71517cdabbdf..99d458b299160e4a05334365f482ff4970f20396 100644 (file)
--- a/wscript
+++ b/wscript
@@ -41,7 +41,7 @@ i18n_children = [
 
 def fetch_svn_revision (path):
        cmd = "LANG= svn info " + path + " | awk '/^Revision:/ { print $2}'"
-       return subprocess.Popen(cmd, shell=True, stderr=sub.STDOUT, stdout=sub.PIPE).communicate()[0]
+       return subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0]
 
 def fetch_gcc_version ():
        cmd = "LANG= gcc --version"