@@ -35,21 +35,23 @@ import subprocess
35
35
import shutil
36
36
import string
37
37
38
+ # If not run from node/, cd to node/.
39
+ os.chdir(os.path.dirname(__file__) or ' .' )
40
+
38
41
# gcc and g++ as defaults matches what GYP's Makefile generator does,
39
42
# except on OS X.
40
43
CC = os.environ.get(' CC' , ' cc' if sys.platform == ' darwin' else ' gcc' )
41
44
CXX = os.environ.get(' CXX' , ' c++' if sys.platform == ' darwin' else ' g++' )
42
45
43
- root_dir = os.path.dirname(__file__)
44
- sys.path.insert(0, os.path.join(root_dir, ' tools' , ' gyp' , ' pylib' ))
46
+ sys.path.insert(0, os.path.join(' tools' , ' gyp' , ' pylib' ))
45
47
from gyp.common import GetFlavor
46
48
47
49
# imports in tools/configure.d
48
- sys.path.insert(0, os.path.join(root_dir, ' tools' , ' configure.d' ))
50
+ sys.path.insert(0, os.path.join(' tools' , ' configure.d' ))
49
51
import nodedownload
50
52
51
53
# imports in tools/
52
- sys.path.insert(0, os.path.join(root_dir, ' tools' ) )
54
+ sys.path.insert(0, ' tools' )
53
55
import getmoduleversion
54
56
from gyp_node import run_gyp
55
57
@@ -403,7 +405,7 @@ intl_optgroup.add_option('--download',
403
405
intl_optgroup.add_option(' --download-path' ,
404
406
action=' store' ,
405
407
dest=' download_path' ,
406
- default=os.path.join(root_dir, ' deps' ) ,
408
+ default=' deps' ,
407
409
help=' Download directory [default: %default]' )
408
410
409
411
parser.add_option_group(intl_optgroup)
@@ -991,7 +993,7 @@ def configure_openssl(o):
991
993
o[' defines' ] += [' NODE_WITHOUT_NODE_OPTIONS' ]
992
994
if options.openssl_fips:
993
995
o[' variables' ][' openssl_fips' ] = options.openssl_fips
994
- fips_dir = os.path.join(root_dir, ' deps' , ' openssl' , ' fips' )
996
+ fips_dir = os.path.join(' deps' , ' openssl' , ' fips' )
995
997
fips_ld = os.path.abspath(os.path.join(fips_dir, ' fipsld' ))
996
998
# LINK is for Makefiles, LD/LDXX is for ninja
997
999
o[' make_fips_settings' ] = [
@@ -1036,7 +1038,7 @@ def configure_static(o):
1036
1038
1037
1039
1038
1040
def write(filename, data):
1039
- filename = os.path.join(root_dir, filename)
1041
+ filename = filename
1040
1042
print(' creating %s' % filename)
1041
1043
f = open(filename, ' w+' )
1042
1044
f.write(data)
@@ -1158,7 +1160,7 @@ def configure_intl(o):
1158
1160
return
1159
1161
1160
1162
# this is just the 'deps' dir. Used for unpacking.
1161
- icu_parent_path = os.path.join(root_dir, ' deps' )
1163
+ icu_parent_path = ' deps'
1162
1164
1163
1165
# The full path to the ICU source directory. Should not include './'.
1164
1166
icu_full_path = ' deps/icu'
0 commit comments