Remove --format=gnu from cuttlefish tar.

I'm not sure why this is here, since it seems to be a strictly worse
choice than the default "posix", but only in that device major/minor
numbers are limited to 63 bits rather than unlimited, which seems unlikely
to occur in practice anyway.

toybox tar doesn't support --format=, and from the GNU tar documentation
there doesn't seem to be much reason to try to do so, unless you
actually need to interoperate with historical systems from the 1990s.

Test: treehugger
Change-Id: I457b18c1833fa84e799f5c5ec624810454ee3bf0
diff --git a/host_package.mk b/host_package.mk
index 0a7d60f..eb19e31 100644
--- a/host_package.mk
+++ b/host_package.mk
@@ -5,11 +5,6 @@
 .PHONY: hosttar
 hosttar: $(cvd_host_package_tar)
 
-$(cvd_host_package_tar): PRIVATE_TAR_FORMAT :=
-ifeq ($(HOST_OS),linux)
-$(cvd_host_package_tar): PRIVATE_TAR_FORMAT := --format=gnu
-endif
-
 # Build this by default when a developer types make
 droidcore: $(cvd_host_package_tar)
 
@@ -92,5 +87,5 @@
 
 $(cvd_host_package_tar): PRIVATE_FILES := $(cvd_host_package_files)
 $(cvd_host_package_tar): $(addprefix $(HOST_OUT)/,$(cvd_host_package_files))
-	$(hide) rm -rf $@ && tar Scfz $@.tmp -C $(HOST_OUT) $(PRIVATE_TAR_FORMAT) $(PRIVATE_FILES)
+	$(hide) rm -rf $@ && tar Scfz $@.tmp -C $(HOST_OUT) $(PRIVATE_FILES)
 	$(hide) mv $@.tmp $@