File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed
Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -108,19 +108,14 @@ def run_gyp(args):
108108if __name__ == '__main__' :
109109 args = sys .argv [1 :]
110110
111- gyp_chromium_no_action = os .environ .get ('GYP_CHROMIUM_NO_ACTION' )
112- if gyp_chromium_no_action == '1' :
113- print 'Skipping gyp_v8 due to GYP_CHROMIUM_NO_ACTION env var.'
111+ gyp_chromium_no_action = os .environ .get ('GYP_CHROMIUM_NO_ACTION' , '1' )
112+ if gyp_chromium_no_action != '0' :
113+ print 'GYP is now disabled by default.\n '
114+ print 'If you really want to run this, set the environment variable '
115+ print 'GYP_CHROMIUM_NO_ACTION=0.'
114116 sys .exit (0 )
115117
116118 running_as_hook = '--running-as-hook'
117- if running_as_hook in args and gyp_chromium_no_action != '0' :
118- print 'GYP is now disabled by default in runhooks.\n '
119- print 'If you really want to run this, either run '
120- print '`python gypfiles/gyp_v8` explicitly by hand '
121- print 'or set the environment variable GYP_CHROMIUM_NO_ACTION=0.'
122- sys .exit (0 )
123-
124119 if running_as_hook in args :
125120 args .remove (running_as_hook )
126121
Original file line number Diff line number Diff line change 1111#define V8_MAJOR_VERSION 6
1212#define V8_MINOR_VERSION 4
1313#define V8_BUILD_NUMBER 388
14- #define V8_PATCH_LEVEL 44
14+ #define V8_PATCH_LEVEL 45
1515
1616// Use 1 for candidates and 0 otherwise.
1717// (Boolean macro values are not supported by all preprocessors.)
You can’t perform that action at this time.
0 commit comments