about summary refs log tree commit diff
path: root/corepkgs
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2011-11-05T21·06+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2011-11-05T21·06+0000
commitfa69ff57269dfd24ff04810c04d130e3e5d94154 (patch)
tree510be115a9e0ff4719869af71337f1e740cfb550 /corepkgs
parentdaed9aeac557af4ec8d3d8f00b4f3f2b8f90408a (diff)
* Fix the broken reference to bunzip2 in the channel unpack script.
Diffstat (limited to 'corepkgs')
-rw-r--r--corepkgs/channels/unpack.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/corepkgs/channels/unpack.sh.in b/corepkgs/channels/unpack.sh.in
index fc85e4ad2e..6e5939f4f2 100644
--- a/corepkgs/channels/unpack.sh.in
+++ b/corepkgs/channels/unpack.sh.in
@@ -14,7 +14,7 @@ for ((n = 0; n < ${#inputs[*]}; n += 2)); do
     
     echo "unpacking channel $channelName"
     
-    @bunzip2@ < $channelTarball | @tar@ xf -
+    @bzip2@ -d < $channelTarball | @tar@ xf -
 
     if test -e */channel-name; then
         channelName="$(@coreutils@/cat */channel-name)"