From d1c5d18ff6fd209e87ad18ea9c8c6fd35989ba82 Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Tue, 21 Aug 2018 19:25:26 -0400 Subject: [PATCH] build: rename configure to configure.py !Should go with next commit! * renaming so that IDEs can properly detect this as python * Add dependency to Makefile PR-URL: https://github.com/nodejs/node/pull/22450 Reviewed-By: Joyee Cheung --- Makefile | 2 +- configure => configure.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename configure => configure.py (100%) diff --git a/Makefile b/Makefile index 7f9a57804b7..21622a24047 100644 --- a/Makefile +++ b/Makefile @@ -129,7 +129,7 @@ out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp \ config.gypi $(PYTHON) tools/gyp_node.py -f make -config.gypi: configure +config.gypi: configure configure.py @if [ -x config.status ]; then \ ./config.status; \ else \ diff --git a/configure b/configure.py similarity index 100% rename from configure rename to configure.py