diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2009-03-12 19:26:39 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2009-03-12 19:26:39 +0100 |
commit | fbb4ff7b4c89eab48af025c91517c292d83f9ce3 (patch) | |
tree | 12d3d628b9c4279cc882f1f25c50a7af0c18180d /src | |
parent | 9129dae932477b757b2a7210784dd97f41b888ec (diff) |
fix for bad way to pass packages (newlines and things)
Diffstat (limited to 'src')
-rw-r--r-- | src/core/libs/lib-software.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/libs/lib-software.sh b/src/core/libs/lib-software.sh index b9ee8d7..53b4a69 100644 --- a/src/core/libs/lib-software.sh +++ b/src/core/libs/lib-software.sh @@ -29,6 +29,7 @@ installpkg() { ALL_PACKAGES=$TARGET_PACKAGES [ -n "$TARGET_GROUPS" ] && ALL_PACKAGES="$ALL_PACKAGES "`list_packages group "$TARGET_GROUPS" | awk '{print $2}'` + ALL_PACKAGES=`echo $ALL_PACKAGES` run_background pacman_installpkg "$PACMAN_TARGET --noconfirm -S $ALL_PACKAGES" $TMP_PACMAN_LOG #TODO: There may be something wrong here. See http://projects.archlinux.org/?p=installer.git;a=commitdiff;h=f504e9ecfb9ecf1952bd8dcce7efe941e74db946 ASKDEV (Simo) follow_progress " Installing... Please Wait " $TMP_PACMAN_LOG |