cjson: bump to version 1.3.2
[buildroot-gz.git] / fs / tar / tar.mk
blob0e3eacbedf05db615d39628a02ecc095e1a55317
1 ################################################################################
3 # tar to archive target filesystem
5 ################################################################################
7 TAR_OPTS := $(call qstrip,$(BR2_TARGET_ROOTFS_TAR_OPTIONS))
9 define ROOTFS_TAR_CMD
10 (cd $(TARGET_DIR); find -print0 | LC_ALL=C sort -z | \
11 tar $(TAR_OPTS) -cf $@ --null --no-recursion -T - --numeric-owner)
12 endef
14 $(eval $(call ROOTFS_TARGET,tar))