From d18e1964dede530c5fae6ae349d6a78fa5342382 Mon Sep 17 00:00:00 2001 From: Ken Sharp Date: Tue, 21 Apr 2015 10:35:44 -0500 Subject: udev-cache: Remove unnecessary tar read from stdin xargs already formats the inputs to tar correctly, so the '-T -' argument to tar is unnecessary. Signed-off-by: Ken Sharp Signed-off-by: Richard Purdie --- meta/recipes-core/udev/udev/udev-cache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-core') diff --git a/meta/recipes-core/udev/udev/udev-cache b/meta/recipes-core/udev/udev/udev-cache index df97000dde..12f68fb825 100644 --- a/meta/recipes-core/udev/udev/udev-cache +++ b/meta/recipes-core/udev/udev/udev-cache @@ -57,7 +57,7 @@ echo "Populating dev cache" udevadm control --stop-exec-queue sysconf_cmd > "$SYSCONF_TMP" find /dev -xdev \( -type b -o -type c -o -type l \) | cut -c 2- \ - | xargs tar cf "${DEVCACHE_TMP}" -T- + | xargs tar cf "${DEVCACHE_TMP}" gzip < "${DEVCACHE_TMP}" > "$DEVCACHE" rm -f "${DEVCACHE_TMP}" mv "$SYSCONF_TMP" "$SYSCONF_CACHED" -- cgit 1.2.3-korg