Import patches-unapplied version 2.200 to ubuntu/trusty-proposed

Imported using git-ubuntu import.

Changelog parent: 59393695b6879ad215217533b218ff0f5584f0fd

New changelog entries:
  * use proper quoting for egrep call in click installer
This commit is contained in:
Oliver Grawert 2013-11-26 16:41:56 +01:00 committed by usd-importer
parent 59393695b6
commit b86f4a8d4a
2 changed files with 7 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
livecd-rootfs (2.200) trusty; urgency=low
* use proper quoting for egrep call in click installer
-- Oliver Grawert <ogra@ubuntu.com> Tue, 26 Nov 2013 16:41:56 +0100
livecd-rootfs (2.199) trusty; urgency=low
* make the click package installation check for proper architecture before

View File

@ -20,7 +20,7 @@ CLICKARCH=$(dpkg --print-architecture)
wget --no-verbose -O "$tmpdir/click_list" "$click_list"
for package in $(cat "$tmpdir/click_list")
do
if echo $package | egrep -q _$CLICKARCH.click|_all.click|_unknown.click; then
if echo $package | egrep -q "_$CLICKARCH.click|_all.click|_unknown.click"; then
echo "Setting up $package"
wget --no-verbose -O "$tmpdir/$package" "$click_uri/$package"
click install --force-missing-framework --root="$click_db" --all-users \