diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2014-02-04 17:55:33 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-04 17:56:04 +0100 |
commit | 99e82b0d4c6d8f10560a8dd5377b244b344963ea (patch) | |
tree | b0feedf7a6a70ed25e8ca8ca0b51654edf6b1a33 | |
parent | 2f865405c9215071a3031f2a2b89db9ec686342d (diff) | |
download | buildroot-99e82b0d4c6d8f10560a8dd5377b244b344963ea.tar.gz buildroot-99e82b0d4c6d8f10560a8dd5377b244b344963ea.zip |
Makefile: also use ignore-times argument to rsync when copying rootfs overlays
Missed from previous patch.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |