diff options
| author | Gaëtan Gilbert | 2020-02-03 14:49:53 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-02-03 14:49:53 +0100 |
| commit | 45f0dc36a749371de35a5d4b998e1305f47e3beb (patch) | |
| tree | ab6351f4918b54529436ab2aa982a0f70209669b | |
| parent | 54f45f5c89f003b4ed2a6e13fdda88d05ee45c83 (diff) | |
| parent | c8ad7e25537d1519646c04b7a35ec53a4c7fae57 (diff) | |
Merge PR #11493: [makefile] Ignore _build_boot directory
Reviewed-by: SkySkimmer
| -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: |
