diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2009-07-19 12:43:11 +0200 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2009-07-19 12:43:11 +0200 |
commit | a96f1b9ac7f505865ffaf9ee9ac1a375c9b959be (patch) | |
tree | d9839c122fc43aac21a3116f10d3fb255515c40b /src/core | |
parent | b668472a5f68a139e47516f70df94b2a327c16d0 (diff) |
use LANG=C when parsing aif output. Fixes FS#14852
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/libs/lib-pacman.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/libs/lib-pacman.sh b/src/core/libs/lib-pacman.sh index a104cee..19e2eca 100644 --- a/src/core/libs/lib-pacman.sh +++ b/src/core/libs/lib-pacman.sh @@ -157,5 +157,5 @@ list_packages () # TODO: check $1 which_group () { - PACKAGE_GROUPS=`$PACMAN_TARGET -Si $1| awk '/^Name/{ printf("%s ",$3) } /^Group/{ print $3 }'` + PACKAGE_GROUPS=`LANG=C $PACMAN_TARGET -Si $1| awk '/^Name/{ printf("%s ",$3) } /^Group/{ print $3 }'` } |