From 6102f447aabce7f3214838e723f0d6b879c83e1d Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Sat, 10 Dec 2005 14:40:45 +0000 Subject: - 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. --- target/tar/tarroot.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'target') 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 -- cgit v1.2.3