summaryrefslogtreecommitdiff
path: root/boot-pkgs
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2010-03-30 14:58:02 +0000
committerIan Lynagh <igloo@earth.li>2010-03-30 14:58:02 +0000
commit8d28994ff311118b3353408632c745ea365cd65d (patch)
tree5a08696bedd35ed7fc26152ed0ffa165ad327397 /boot-pkgs
parentf96ea257527704ac24b2f619018de7ed5dc7c84d (diff)
downloadhaskell-8d28994ff311118b3353408632c745ea365cd65d.tar.gz
Avoid a non-portable use of tar reported by Roman Leshchinskiy
Diffstat (limited to 'boot-pkgs')
-rw-r--r--boot-pkgs2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot-pkgs b/boot-pkgs
index 31ad53c516..e4554269ba 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"