From 62d5503f33b96d16ef161ea7b8338208718be1fa Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Sun, 26 Aug 2018 16:18:32 +0200 Subject: [PATCH] build: use `0o` octal notation in configure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This un-‘breaks’ the error message we print when using Python 3 to run `configure`. Refs: https://github.com/nodejs/help/issues/1457 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index c9d598b799204b..332071345f4487 100755 --- a/configure +++ b/configure @@ -1575,7 +1575,7 @@ write('config.gypi', do_not_edit + write('config.status', '#!/bin/sh\nset -x\nexec ./configure ' + ' '.join([pipes.quote(arg) for arg in original_argv]) + '\n') -os.chmod('config.status', 0775) +os.chmod('config.status', 0o775) config = { 'BUILDTYPE': 'Debug' if options.debug else 'Release',