From f13463325aba599622f9a7e46b88e07ac8633bea Mon Sep 17 00:00:00 2001 From: Christian Prochaska Date: Wed, 1 Nov 2023 14:42:50 +0100 Subject: [PATCH] mk: fix clean rule dependencies in build.mk Issue #5015 --- tool/builddir/build.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool/builddir/build.mk b/tool/builddir/build.mk index bf4b0cf012..2065a4ba79 100644 --- a/tool/builddir/build.mk +++ b/tool/builddir/build.mk @@ -474,10 +474,10 @@ clean_gen_files: $(VERBOSE)rm -f $(LIB_PROGRESS_LOG) $(VERBOSE)rm -f $(LIB_DEP_FILE) -clean_install_dir: +clean_install_dir: clean_targets clean_libcache $(VERBOSE)(test -d $(INSTALL_DIR) && find $(INSTALL_DIR) -type l -not -readable -delete) || true -clean_debug_dir: +clean_debug_dir: clean_targets clean_libcache $(VERBOSE)(test -d $(DEBUG_DIR) && find $(DEBUG_DIR) -type l -not -readable -delete) || true clean_empty_dirs: clean_targets clean_libcache clean_run clean_gen_files clean_install_dir clean_debug_dir