summaryrefslogtreecommitdiff
path: root/src/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-14 16:50:04 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-14 16:50:04 +0100
commit90554068a272a15192c4fc3d84d1ce946e795b4f (patch)
tree13d25a110347810fedc72217fbc20f2bf2e34633 /src/wscript
parent689b1a86d0c4cf4937492f4680457a133df368c6 (diff)
Python coding style.
Diffstat (limited to 'src/wscript')
-rw-r--r--src/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wscript b/src/wscript
index 70f4b27..51e83be 100644
--- a/src/wscript
+++ b/src/wscript
@@ -1,8 +1,8 @@
def build(bld):
if bld.env.STATIC:
- obj = bld(features = 'cxx cxxstlib')
+ obj = bld(features='cxx cxxstlib')
else:
- obj = bld(features = 'cxx cxxshlib')
+ obj = bld(features='cxx cxxshlib')
obj.name = 'libcxml'
obj.target = 'cxml'
obj.export_includes = ['.']