summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-06 21:03:05 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-06 21:03:05 +0000
commit8fb94b87c535e8ed27ba985d77886198ecb77308 (patch)
tree8aa9465fbc3cdeda95dd7ff3eac2f98d2b689ff7 /cscript
parent796fa81d678eac8a764c17cce83fc5786bbeafb4 (diff)
Try to fix build on Fedora 23.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index 24f8e156..4f2fd2d4 100644
--- a/cscript
+++ b/cscript
@@ -9,7 +9,7 @@ def build(target, options):
cmd += ' --static'
if target.distro == 'centos':
cmd += ' --disable-tests'
- if target.distro == 'debian' and target.version == 'unstable':
+ if (target.distro == 'debian' and target.version == 'unstable' or target.distro == 'fedora' and target.version == '23'):
target.append_with_space('CXXFLAGS', '-std=c++11')
elif target.platform == 'windows':
cmd += ' --target-windows --disable-tests'