From 8d28994ff311118b3353408632c745ea365cd65d Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Tue, 30 Mar 2010 14:58:02 +0000 Subject: [PATCH] Avoid a non-portable use of tar reported by Roman Leshchinskiy --- boot-pkgs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot-pkgs b/boot-pkgs index 31ad53c..e455426 100644 --- a/boot-pkgs +++ b/boot-pkgs @@ -22,7 +22,7 @@ do mkdir "libraries/$p" ( cd "libraries/$p" - tar -zxf ../../$tarball + cat ../../$tarball | gzip -d | tar xf - mv */* . ) touch "$stamp" -- 1.7.10.4