From: Bernhard Reutner-Fischer Date: Sat, 10 Dec 2005 14:40:45 +0000 (-0000) Subject: - remove doublequotes from rootfs tar options X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6102f447aabce7f3214838e723f0d6b879c83e1d;p=buildroot.git - 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. --- diff --git a/target/tar/tarroot.mk b/target/tar/tarroot.mk index 307220ad25..867adc1b92 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