summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-10-28 17:16:17 +0000
committerCarl Hetherington <carl@carlh.net>2010-10-28 17:16:17 +0000
commite88f7f6b55142860155e06b5d92c6693414816e7 (patch)
tree54e9dfdc8edc965a05536b3411357bc247b00790 /wscript
parent6f9e9ad23e98ac1b3f52065ad53641cbf4c38f22 (diff)
Hopefully fix up build system after my previous changes.
git-svn-id: svn://localhost/ardour2/branches/3.0@7936 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 19fb5fb669..99d458b299 100644
--- 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"