From 17d981ec59e45df977ff6f8034c5f0ba073339ca 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 (cherry picked from commit d1c5d18ff6fd209e87ad18ea9c8c6fd35989ba82) --- 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 1e3cfd6f084535..dc4e0490888adc 100644 --- a/Makefile +++ b/Makefile @@ -97,7 +97,7 @@ out/Makefile: common.gypi deps/http_parser/http_parser.gyp \ deps/v8/src/v8.gyp node.gyp config.gypi $(PYTHON) tools/gyp_node.py -f make -config.gypi: configure +config.gypi: configure configure.py $(error Missing or stale $@, please run ./$<) install: all ## Installs node into $PREFIX (default=/usr/local). diff --git a/configure b/configure.py similarity index 100% rename from configure rename to configure.py