From be51da6b1f739191d31b02d68711880428ac9de3 Mon Sep 17 00:00:00 2001 From: Cyril Brulebois Date: Tue, 19 May 2015 11:33:40 +0200 Subject: Use tr instead of (missing in d-i) xargs (Closes: #785693). Thanks, Julian Schauder! --- debian/changelog | 7 +++++++ functions | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 9f278ee..9827ade 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debootstrap (1.0.70) UNRELEASED; urgency=medium + + * Use tr instead of (missing in d-i) xargs (Closes: #785693). Thanks, + Julian Schauder! + + -- Cyril Brulebois Tue, 19 May 2015 11:31:43 +0200 + debootstrap (1.0.69) unstable; urgency=medium [ Cyril Brulebois ] diff --git a/functions b/functions index d697c4f..b9f4428 100644 --- a/functions +++ b/functions @@ -667,7 +667,7 @@ download_release () { local leftoverdebs="$*" # Fix possible duplicate package names, which would screw up counts: - leftoverdebs=$(printf "$leftoverdebs"|sed 's/ /\n/g'|sort -u|xargs) + leftoverdebs=$(printf "$leftoverdebs"|sed 's/ /\n/g'|sort -u|tr '\n' ' ') numdebs=$(printf "$leftoverdebs"|wc -w) for c in $COMPONENTS; do -- cgit v0.12