svn commit: trunk/buildroot/target/tar

aldot at uclibc.org aldot at uclibc.org
Sat Dec 10 14:40:53 UTC 2005


Author: aldot
Date: 2005-12-10 06:40:45 -0800 (Sat, 10 Dec 2005)
New Revision: 12809

Log:
- 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.


Modified:
   trunk/buildroot/target/tar/tarroot.mk


Changeset:
Modified: trunk/buildroot/target/tar/tarroot.mk
===================================================================
--- trunk/buildroot/target/tar/tarroot.mk	2005-12-10 14:08:40 UTC (rev 12808)
+++ trunk/buildroot/target/tar/tarroot.mk	2005-12-10 14:40:45 UTC (rev 12809)
@@ -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
 	- at find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
 	@rm -rf $(TARGET_DIR)/usr/man




More information about the uClibc-cvs mailing list