[Buildroot] [PATCH v2] fs/tar: support passing long options to tar

Frank Hunleth fhunleth at troodon-software.com
Fri Jun 24 15:57:56 UTC 2016


Move TAR_OPTS so that long options (or any option with an initial '-')
may be passed to tar. Since TAR_OPTS is at the front of the list, single
letter options still work.

Signed-off-by: Frank Hunleth <fhunleth at troodon-software.com>
---
Changes v1 -> v2:
  - Move TAR_OPTS to front to preserve backward compatibility
    (suggested by Arnout)
  - Removed additional help text since no backward compatibility issues
    were introduced.

 fs/tar/tar.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/tar/tar.mk b/fs/tar/tar.mk
index 28219cf..11c69c5 100644
--- a/fs/tar/tar.mk
+++ b/fs/tar/tar.mk
@@ -7,7 +7,7 @@
 TAR_OPTS := $(call qstrip,$(BR2_TARGET_ROOTFS_TAR_OPTIONS))

 define ROOTFS_TAR_CMD
-	tar -c$(TAR_OPTS)f $@ --numeric-owner -C $(TARGET_DIR) .
+	tar $(TAR_OPTS) -cf $@ --numeric-owner -C $(TARGET_DIR) .
 endef

 $(eval $(call ROOTFS_TARGET,tar))
--
2.5.0



More information about the buildroot mailing list