diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-10 14:40:45 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-10 14:40:45 +0000 |
commit | 6102f447aabce7f3214838e723f0d6b879c83e1d (patch) | |
tree | a6b9045bc0b6e2d259b8b1e2e21f54434adbb620 | |
parent | e586c19c6b2828520c605485b28ee018fce02f12 (diff) | |
download | buildroot-novena-6102f447aabce7f3214838e723f0d6b879c83e1d.tar.gz buildroot-novena-6102f447aabce7f3214838e723f0d6b879c83e1d.zip |
- remove doublequotes from rootfs tar options
busybox tar -c" -v"f m.tar libm doesn't work but tar -c -vf n.tar libm does.
-rw-r--r-- | target/tar/tarroot.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/tar/tarroot.mk b/target/tar/tarroot.mk index 307220ad2..867adc1b9 100644 --- a/target/tar/tarroot.mk +++ b/target/tar/tarroot.mk @@ -4,8 +4,8 @@ # ############################################################# -TAR_OPTS := $(strip $(BR2_TARGET_ROOTFS_TAR_OPTIONS)) - +TAR_OPTS := $(strip $(subst ",, $(BR2_TARGET_ROOTFS_TAR_OPTIONS))) +#" tarroot: host-fakeroot makedevs $(STAGING_DIR)/fakeroot.env -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true; @rm -rf $(TARGET_DIR)/usr/man |