From 1cd3f992fb3659aacbb0cdd3ed64347a37569891 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tilman=20Keskin=C3=B6z?= Date: Mon, 25 Mar 2013 04:48:11 +0000 Subject: [PATCH] Support .dotfiles in / being copied to the TARGET MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit An example is .init_enable_core, to enable coredumps in busybox Signed-off-by: Tilman Keskinöz Signed-off-by: Peter Korsgaard --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f1c98aa933..62311ede36 100644 --- a/Makefile +++ b/Makefile @@ -431,7 +431,7 @@ $(BUILD_DIR)/.root: mkdir -p $(TARGET_DIR) if ! [ -d "$(TARGET_DIR)/bin" ]; then \ if [ -d "$(TARGET_SKELETON)" ]; then \ - cp -fa $(TARGET_SKELETON)/* $(TARGET_DIR)/; \ + rsync -au $(TARGET_SKELETON)/ $(TARGET_DIR)/; \ fi; \ fi cp support/misc/target-dir-warning.txt $(TARGET_DIR_WARNING_FILE) -- 2.30.2