summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2018-08-07 06:50:39 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2018-08-07 06:50:39 +0100
commit779d76ca6af9a884e2a8a3f478a3a9f92593d85c (patch)
tree1774cbf881fc69d71b4eeb6321ae1abc80700c67 /Tools
parentaaa67702ec9967e0571fceeac35d2afede8b015b (diff)
downloadswig-779d76ca6af9a884e2a8a3f478a3a9f92593d85c.tar.gz
Correct Travis Ruby compilation flags
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/testflags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/testflags.py b/Tools/testflags.py
index 31ca2e7bd..a65299f0a 100755
--- a/Tools/testflags.py
+++ b/Tools/testflags.py
@@ -46,7 +46,7 @@ def get_cxxflags(language, std, compiler):
"php":"-Werror " + cxx_common,
"python":"-Werror " + cxx_common,
"r":"-Werror " + cxx_common,
- "ruby":"-Werror " + cxx_common + "-Wno-deprecated-declarations", # For Ruby on MacOS Xcode 9.4 misconfiguration defining 'isfinite' to deprecated 'finite'
+ "ruby":"-Werror " + cxx_common + " -Wno-deprecated-declarations", # For Ruby on MacOS Xcode 9.4 misconfiguration defining 'isfinite' to deprecated 'finite'
"scilab":"-Werror " + cxx_common,
"tcl":"-Werror " + cxx_common,
}