From: Peter Korsgaard Date: Tue, 4 Feb 2014 16:55:33 +0000 (+0100) Subject: Makefile: also use ignore-times argument to rsync when copying rootfs overlays X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=99e82b0d4c6d8f10560a8dd5377b244b344963ea;p=buildroot.git Makefile: also use ignore-times argument to rsync when copying rootfs overlays Missed from previous patch. Signed-off-by: Peter Korsgaard --- diff --git a/Makefile b/Makefile index 9775397748..dec06941de 100644 --- a/Makefile +++ b/Makefile @@ -548,7 +548,7 @@ endif @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \ $(call MESSAGE,"Copying overlay $(d)"); \ - rsync -a $(RSYNC_VCS_EXCLUSIONS) \ + rsync -a --ignore-times $(RSYNC_VCS_EXCLUSIONS) \ --chmod=Du+w --exclude .empty --exclude '*~' \ $(d)/ $(TARGET_DIR)$(sep))