From: Eric Andersen Date: Wed, 19 Apr 2006 17:24:47 +0000 (-0000) Subject: when copying, be forceful about it to gratuitously overwrite symlinks X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a71258c161df873a135c68c97d82584b2dddcb6a;p=buildroot.git when copying, be forceful about it to gratuitously overwrite symlinks --- diff --git a/Makefile b/Makefile index eb5f3e592f..8e6a83f165 100644 --- a/Makefile +++ b/Makefile @@ -109,7 +109,7 @@ $(TARGET_DIR): zcat $(TARGET_SKELETON) | tar -C $(BUILD_DIR) -xf -; \ fi; if [ -d "$(TARGET_SKEL_DIR)" ] ; then \ - cp -a $(TARGET_SKEL_DIR)/* $(TARGET_DIR)/; \ + cp -fa $(TARGET_SKEL_DIR)/* $(TARGET_DIR)/; \ fi; touch $(STAGING_DIR)/.fakeroot.00000 -find $(TARGET_DIR) -type d -name CVS | xargs rm -rf