# HG changeset patch # User "Yann E. MORIN" # Date 1266447888 -3600 # Node ID 54fe21c3fc77b5e5e0b97fe614bc199714daeabd # Parent ca5e7981fc24a715a43bbaf98972fa9dee4ed4ff scripts: fix dumping 'other environment' Do not sort the environment, it cripples the output. diff -r ca5e7981fc24 -r 54fe21c3fc77 scripts/crosstool-NG.sh.in --- a/scripts/crosstool-NG.sh.in Thu Feb 04 15:18:46 2010 +0100 +++ b/scripts/crosstool-NG.sh.in Thu Feb 18 00:04:48 2010 +0100 @@ -483,8 +483,8 @@ CT_DoLog EXTRA " host = ${CT_REAL_HOST}" CT_DoLog EXTRA " target = ${CT_TARGET}" set |grep -E '^CT_.+=' |sort |CT_DoLog DEBUG - CT_DoLog DEBUG " Other environment:" - printenv |grep -v -E '^CT_.+=' |sort |CT_DoLog DEBUG + CT_DoLog DEBUG "Other environment:" + printenv |grep -v -E '^CT_.+=' |CT_DoLog DEBUG CT_EndStep fi