From d6f0ecc622fed425d2ea8fb4dd6d885f4db4cda8 Mon Sep 17 00:00:00 2001 From: Shigeki Ohtsu Date: Sat, 3 Mar 2012 12:18:24 +0900 Subject: [PATCH] build: fix gcc version check --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 49d57b4..7a44a82 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': -- 2.7.4