diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-05-02 21:59:14 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-05-02 21:59:14 +0000 |
commit | ff1d30c4a3c619bf6e451634c35c23ffce835001 (patch) | |
tree | 5c8b7f516ada07f973d70556cd7ac3977106edab /scripts/build/debug.sh | |
parent | fdb7c1e75d537921898d2068530c137881769eb5 (diff) | |
download | crosstool-ng-ff1d30c4a3c619bf6e451634c35c23ffce835001.tar.gz crosstool-ng-ff1d30c4a3c619bf6e451634c35c23ffce835001.tar.bz2 crosstool-ng-ff1d30c4a3c619bf6e451634c35c23ffce835001.zip |
For tools/ and debug/ build scripts, annd a numeric prefix, so that they always get built in the same order, in case of library dependencies.
/trunk/scripts/build/debug.sh | 2 1 1 0 +-
/trunk/scripts/build/tools.sh | 2 1 1 0 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Diffstat (limited to 'scripts/build/debug.sh')
-rw-r--r-- | scripts/build/debug.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/debug.sh b/scripts/build/debug.sh index d2cca62f..84dbd75c 100644 --- a/scripts/build/debug.sh +++ b/scripts/build/debug.sh @@ -5,7 +5,7 @@ CT_DEBUG_FACILITY_LIST= 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}" fi |