From dbb6d20aac0be134987ca73d45a73bdc248605a8 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Tue, 28 Mar 2017 14:22:27 +0800 Subject: [PATCH] make: remove version parameter from git status porcelain option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Version parameter was added in git 2.11, while default git on macOS is currently 2.10. According to the latest git docs, if the version parameter is not provided, it defaults to ‘v1’, so removing it doesn’t change the format. --- make/project.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/project.mk b/make/project.mk index 6c3bc6b1e4..4a2c39aa93 100644 --- a/make/project.mk +++ b/make/project.mk @@ -405,7 +405,7 @@ clean: config-clean check-submodules: # Dump the git status for the whole working copy once, then grep it for each submodule. This saves a lot of time on Windows. -GIT_STATUS := $(shell cd ${IDF_PATH} && git status --porcelain=v1 --ignore-submodules=dirty) +GIT_STATUS := $(shell cd ${IDF_PATH} && git status --porcelain --ignore-submodules=dirty) # Generate a target to check this submodule # $(1) - submodule directory, relative to IDF_PATH