summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorShigeki Ohtsu <ohtsu@iij.ad.jp>2012-03-03 12:18:24 +0900
committerBen Noordhuis <info@bnoordhuis.nl>2012-03-03 18:07:39 +0100
commitd6f0ecc622fed425d2ea8fb4dd6d885f4db4cda8 (patch)
tree9844d078abf31955fa42a69aaa604a3545ea40e2 /configure
parentb6595c4d60cef34460f6cebce7c46a0dff6174f6 (diff)
downloadnode-d6f0ecc622fed425d2ea8fb4dd6d885f4db4cda8.tar.gz
build: fix gcc version check
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 49d57b490..7a44a8282 100755
--- a/configure
+++ b/configure
@@ -211,7 +211,7 @@ def configure_node(o):
# see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45883
# see http://code.google.com/p/v8/issues/detail?id=884
# TODO handle CC=clang
- o['variables']['strict_aliasing'] = b(gcc_version() >= (False, 4, 6, 0))
+ o['variables']['strict_aliasing'] = b(gcc_version() >= [False, 4, 6, 0])
# TODO move to node.gyp
if sys.platform == 'sunos5':