diff options
author | elmig <elmig@i5.Belkin> | 2011-02-10 21:48:26 +0000 |
---|---|---|
committer | elmig <elmig@i5.Belkin> | 2011-02-10 21:48:26 +0000 |
commit | 600069efff1e329e09c26fe6dd8b9418100a19d8 (patch) | |
tree | f031c537f69a67ffe6ac322f74fe21442733fbec /functions | |
parent | f7db04e2da7738daf2624f088c7dfefdc0c55fd9 (diff) | |
download | debootstrap-600069efff1e329e09c26fe6dd8b9418100a19d8.tar.gz |
fix to ar usage. closes #598729
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -777,7 +777,7 @@ extract_ar_deb_data () { esac if type $cat_cmd >/dev/null 2>&1; then - ar -p "$pkg" data.tar.gz | $cat_cmd | tar -xf - + ar -p "$pkg" "$tarball" | $cat_cmd | tar -xf - else error 1 UNPACKCMDUNVL "The $cat_cmd is not available on the system" fi |