From 00a201fc0d3383c6d6d59642853dc185e6649d3e Mon Sep 17 00:00:00 2001 From: Jeffrey Townsend Date: Wed, 24 Apr 2019 20:30:10 +0000 Subject: [PATCH] Revert "Remove target directory prior to extraction." This reverts commit f2c23181b42b15a3aa729446b9a0ce9b1e1fbd1b. --- make/kbuild.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/kbuild.mk b/make/kbuild.mk index 063867ad..8be2961b 100644 --- a/make/kbuild.mk +++ b/make/kbuild.mk @@ -123,7 +123,7 @@ $(K_ARCHIVE_PATH): # The extracted kernel sources # $(K_SOURCE_DIR)/Makefile: $(K_ARCHIVE_PATH) - rm -rf $(K_TARGET_DIR) && mkdir -p $(K_TARGET_DIR) && cd $(K_TARGET_DIR) && tar kxf $(K_ARCHIVE_PATH) + mkdir -p $(K_TARGET_DIR) && cd $(K_TARGET_DIR) && tar kxf $(K_ARCHIVE_PATH) touch -c $(K_SOURCE_DIR)/Makefile $(K_MAKE) mrproper