--- /usr/bin/pkgfile 2009-03-05 17:08:10.000000000 -0200 +++ pkgfile 2009-04-01 15:01:12.000000000 -0300 @@ -150,7 +150,7 @@ wget -q --limit-rate="$RATELIMIT" "$filelist" || (warn "Could not retrieve %s\n" $filelist; continue) msg "Extracting file list... " $repo mkdir -p "$repo.tmp" || (warn "Could not create directory for %s\n" $repo; continue) - tar zxf "$repofile" -C "$repo.tmp" 2> /dev/null || (warn "Unable to extract %s\n" $repofile; continue) + tar ozxf "$repofile" -C "$repo.tmp" 2> /dev/null || (warn "Unable to extract %s\n" $repofile; continue) rm -rf "$repo" mv "$repo.tmp" "$repo" rm -f "$repofile"