# HG changeset patch # User "Yann E. MORIN" # Date 1209808429 0 # Node ID 99724e41069347455a9c6ce45c2a03e6e8940174 # Parent 88abdac040ef10f9396a2f61735b0810de7c9cdd Fix tools.sh and debug.sh now the tools/ and debug/ sub-dirs are numerically sorted. /trunk/scripts/build/debug.sh | 4 2 2 0 ++-- /trunk/scripts/build/tools.sh | 4 2 2 0 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff -r 88abdac040ef -r 99724e410693 scripts/build/debug.sh --- a/scripts/build/debug.sh Fri May 02 22:47:43 2008 +0000 +++ b/scripts/build/debug.sh Sat May 03 09:53:49 2008 +0000 @@ -5,9 +5,9 @@ for f in "${CT_LIB_DIR}/scripts/build/debug/"*.sh; do is_enabled= . "${f}" - f=$(basename "${f#???-}" .sh) + f=$(basename "${f}" .sh) if [ "${is_enabled}" = "y" ]; then - CT_DEBUG_FACILITY_LIST="${CT_DEBUG_FACILITY_LIST} ${f}" + CT_DEBUG_FACILITY_LIST="${CT_DEBUG_FACILITY_LIST} ${f#???-}" fi done diff -r 88abdac040ef -r 99724e410693 scripts/build/tools.sh --- a/scripts/build/tools.sh Fri May 02 22:47:43 2008 +0000 +++ b/scripts/build/tools.sh Sat May 03 09:53:49 2008 +0000 @@ -5,9 +5,9 @@ for f in "${CT_LIB_DIR}/scripts/build/tools/"*.sh; do is_enabled= . "${f}" - f=$(basename "${f#???-}" .sh) + f=$(basename "${f}" .sh) if [ "${is_enabled}" = "y" ]; then - CT_TOOLS_FACILITY_LIST="${CT_TOOLS_FACILITY_LIST} ${f}" + CT_TOOLS_FACILITY_LIST="${CT_TOOLS_FACILITY_LIST} ${f#???-}" fi done