Skip to content

Commit 4862ce1

Browse files
addaleaxtargos
authored andcommitted
build: use 0o octal notation in configure
This un-‘breaks’ the error message we print when using Python 3 to run `configure`. Refs: nodejs/help#1457 PR-URL: #22536 Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent ea34cc7 commit 4862ce1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,7 @@ write('config.gypi', do_not_edit +
15751575

15761576
write('config.status', '#!/bin/sh\nset -x\nexec ./configure ' +
15771577
' '.join([pipes.quote(arg) for arg in original_argv]) + '\n')
1578-
os.chmod('config.status', 0775)
1578+
os.chmod('config.status', 0o775)
15791579

15801580
config = {
15811581
'BUILDTYPE': 'Debug' if options.debug else 'Release',

0 commit comments

Comments
 (0)