18 lines
675 B
Diff
18 lines
675 B
Diff
|
diff -up ./node_build/dependencies/libuv/gyp_uv.py.python3 ./node_build/dependencies/libuv/gyp_uv.py
|
||
|
--- ./node_build/dependencies/libuv/gyp_uv.py.python3 2017-02-18 15:19:22.280061575 -0500
|
||
|
+++ ./node_build/dependencies/libuv/gyp_uv.py 2017-02-18 15:32:37.090478242 -0500
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#!/usr/bin/env python
|
||
|
+#!/usr/bin/env python2
|
||
|
|
||
|
import glob
|
||
|
import platform
|
||
|
@@ -34,6 +34,7 @@ def compiler_version():
|
||
|
proc = subprocess.Popen(CC.split() + ['-dumpversion'], stdout=subprocess.PIPE)
|
||
|
version = proc.communicate()[0].split('.')
|
||
|
version = map(int, version[:2])
|
||
|
+ if len(version) < 2: version.append(0)
|
||
|
version = tuple(version)
|
||
|
return (version, is_clang)
|
||
|
|