scripts: fix dumping 'other environment'
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Feb 18 00:04:48 2010 +0100 (2010-02-18)
changeset 180654fe21c3fc77
parent 1805 ca5e7981fc24
child 1807 4201b5881a7e
scripts: fix dumping 'other environment'

Do not sort the environment, it cripples the output.
scripts/crosstool-NG.sh.in
     1.1 --- a/scripts/crosstool-NG.sh.in	Thu Feb 04 15:18:46 2010 +0100
     1.2 +++ b/scripts/crosstool-NG.sh.in	Thu Feb 18 00:04:48 2010 +0100
     1.3 @@ -483,8 +483,8 @@
     1.4      CT_DoLog EXTRA "  host   = ${CT_REAL_HOST}"
     1.5      CT_DoLog EXTRA "  target = ${CT_TARGET}"
     1.6      set |grep -E '^CT_.+=' |sort |CT_DoLog DEBUG
     1.7 -    CT_DoLog DEBUG "  Other environment:"
     1.8 -    printenv |grep -v -E '^CT_.+=' |sort |CT_DoLog DEBUG
     1.9 +    CT_DoLog DEBUG "Other environment:"
    1.10 +    printenv |grep -v -E '^CT_.+=' |CT_DoLog DEBUG
    1.11      CT_EndStep
    1.12  fi
    1.13