mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 12:44:33 +02:00
make: remove version parameter from git status porcelain option
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.
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user