diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-04-19 17:24:47 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-04-19 17:24:47 +0000 |
commit | a71258c161df873a135c68c97d82584b2dddcb6a (patch) | |
tree | e8bef6e861c4e57b1e9e2b89959f7e2f29dd98ff | |
parent | e9b3eb8f7335736e8e1b94eaa0d0b03d52ba3ada (diff) | |
download | buildroot-novena-a71258c161df873a135c68c97d82584b2dddcb6a.tar.gz buildroot-novena-a71258c161df873a135c68c97d82584b2dddcb6a.zip |
when copying, be forceful about it to gratuitously overwrite symlinks
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |