summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorelmig <elmig@i5.Belkin>2011-02-10 21:48:26 (GMT)
committerelmig <elmig@i5.Belkin>2011-02-10 21:48:26 (GMT)
commit600069efff1e329e09c26fe6dd8b9418100a19d8 (patch)
treef031c537f69a67ffe6ac322f74fe21442733fbec /functions
parentf7db04e2da7738daf2624f088c7dfefdc0c55fd9 (diff)
downloaddebootstrap-600069efff1e329e09c26fe6dd8b9418100a19d8.zip
debootstrap-600069efff1e329e09c26fe6dd8b9418100a19d8.tar.gz
debootstrap-600069efff1e329e09c26fe6dd8b9418100a19d8.tar.bz2
fix to ar usage. closes #598729
Diffstat (limited to 'functions')
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions b/functions
index d73c570..587d068 100644
--- a/functions
+++ b/functions
@@ -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