diff options
author | Harald Hoyer <harald@redhat.com> | 2013-07-05 16:21:50 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-07-05 16:27:34 +0200 |
commit | 02b5c8e3a31e277fde4844b1921fe3f340b28c65 (patch) | |
tree | e1ea3b1bbd43ee4b410de842ea77ce0ace55e99d /dracut.sh | |
parent | f734347ae7da6943342b2a4e7be99b3e2c6feda7 (diff) | |
download | dracut-02b5c8e3a31e277fde4844b1921fe3f340b28c65.tar.gz dracut-02b5c8e3a31e277fde4844b1921fe3f340b28c65.tar.bz2 dracut-02b5c8e3a31e277fde4844b1921fe3f340b28c65.zip |
dracut.sh: unset all LC_* and LANG
saves 10% of time :-)
Diffstat (limited to 'dracut.sh')
-rwxr-xr-x | dracut.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -500,6 +500,10 @@ for i in /usr/sbin /sbin /usr/bin /bin; do fi done export PATH="${NPATH#:}" +unset LC_MESSAGES +unset LC_CTYPE +export LC_ALL=C +export LANG=C unset NPATH unset LD_LIBRARY_PATH unset GREP_OPTIONS |