mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04: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:
parent
16ef01dc69
commit
dbb6d20aac
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user