Set LC_ALL=C in order to avoid problems with character ranges and
sorting. PR: bin/104505 MFC after: 3 days
This commit is contained in:
parent
e75d2f3694
commit
f2890dbd24
@ -1926,6 +1926,9 @@ cmd_rollback () {
|
||||
# Make sure we find utilities from the base system
|
||||
export PATH=/sbin:/bin:/usr/sbin:/usr/bin:${PATH}
|
||||
|
||||
# Set LC_ALL in order to avoid problems with character ranges like [A-Z].
|
||||
export LC_ALL=C
|
||||
|
||||
get_params $@
|
||||
for COMMAND in ${COMMANDS}; do
|
||||
cmd_${COMMAND}
|
||||
|
@ -1032,6 +1032,9 @@ cmd_update() {
|
||||
# Make sure we find utilities from the base system
|
||||
export PATH=/sbin:/bin:/usr/sbin:/usr/bin:${PATH}
|
||||
|
||||
# Set LC_ALL in order to avoid problems with character ranges like [A-Z].
|
||||
export LC_ALL=C
|
||||
|
||||
get_params $@
|
||||
for COMMAND in ${COMMANDS}; do
|
||||
cmd_${COMMAND}
|
||||
|
Loading…
Reference in New Issue
Block a user