diff options
| author | Emilio Jesus Gallego Arias | 2020-01-31 00:38:06 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2020-01-31 00:40:38 +0100 |
| commit | c8ad7e25537d1519646c04b7a35ec53a4c7fae57 (patch) | |
| tree | ce50af4284c6b88adcc29e2f71d5697a1d6a76d7 | |
| parent | 869f731439b7fe034067bb550b60713b9b790f5b (diff) | |
[makefile] Ignore _build_boot directory
PR #11267 reverted commit d21e17ac99dfb2008f2e2bfdb373413490d1ffc7 (of
PR #10695) by error, this reinstates it.
| -rw-r--r-- | Makefile.make | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.make b/Makefile.make index e19053462d..e63a578e37 100644 --- a/Makefile.make +++ b/Makefile.make @@ -56,6 +56,7 @@ FIND_SKIP_DIRS:=-not -name . '(' \ -name "$${GIT_DIR}" -o \ -name '_build' -o \ -name '_build_ci' -o \ + -name '_build_boot' -o \ -name '_install_ci' -o \ -name 'gramlib' -o \ -name 'user-contrib' -o \ @@ -251,7 +252,7 @@ docclean: rm -rf doc/sphinx/_build archclean: clean-ide optclean voclean plugin-tutorialclean - rm -rf _build + rm -rf _build _build_boot rm -f $(ALLSTDLIB).* optclean: |
