summaryrefslogtreecommitdiff
path: root/libs/surfaces/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-10-27 23:10:27 +0000
committerCarl Hetherington <carl@carlh.net>2010-10-27 23:10:27 +0000
commit9f7f0f79a3e8776164e7ae73eb4f40fce11e6539 (patch)
tree5d0e09f58b100ba3517175977862b52ed53468b4 /libs/surfaces/wscript
parent04585abae320f28f3f9f790efabaf4d255b651a4 (diff)
Make build scripts python2/3 agnostic.
git-svn-id: svn://localhost/ardour2/branches/3.0@7931 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/surfaces/wscript')
-rw-r--r--libs/surfaces/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/wscript b/libs/surfaces/wscript
index 2ff22bbfb6..f9e68f48f9 100644
--- a/libs/surfaces/wscript
+++ b/libs/surfaces/wscript
@@ -51,11 +51,11 @@ def configure(conf):
if Options.options.wiimote:
conf.check_cc (header_name='cwiid.h',define_name='HAVE_CWIID_H')
if not conf.env['HAVE_CWIID_H']:
- print 'WIIMOTE configured but you are missing libcwiid!'
+ print('WIIMOTE configured but you are missing libcwiid!')
sys.exit(1)
conf.check_cc (header_name='bluetooth/bluetooth.h',define_name='HAVE_BLUETOOTH_H')
if not conf.env['HAVE_BLUETOOTH_H']:
- print 'WIIMOTE configured but you are missing the libbluetooth headers needed to compile wiimote support!'
+ print('WIIMOTE configured but you are missing the libbluetooth headers needed to compile wiimote support!')
sys.exit(1)
conf.define ('BUILD_WIIMOTE', 1)