diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-09-05 11:15:28 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-09-05 11:15:28 +0000 |
commit | 49bc58bd343e9e357f0073883a3830ea0ce55b78 (patch) | |
tree | e057ae39b03a780e0c0d7c8f4ff673b59124d1e1 | |
parent | 55452b5de7a90fa3fde92d3e9cbb337e86395a63 (diff) | |
download | crosstool-ng-49bc58bd343e9e357f0073883a3830ea0ce55b78.tar.gz crosstool-ng-49bc58bd343e9e357f0073883a3830ea0ce55b78.tar.bz2 crosstool-ng-49bc58bd343e9e357f0073883a3830ea0ce55b78.zip |
Backport #971 from trunk:
Be gentle to older findutils that don't have the "{} +" construct, and simply use "{} \;" instead.
/branches/1.2/scripts/build/debug/300-gdb.sh | 2 1 1 0 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index 1ec6e830..2cdb5d87 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -177,7 +177,7 @@ do_debug_gdb_build() { CT_DoExecLog ALL make DESTDIR="${CT_DEBUG_INSTALL_DIR}" install # Building a native gdb also builds a gdbserver - find "${CT_DEBUG_INSTALL_DIR}" -type f -name gdbserver -exec rm -fv {} + 2>&1 |CT_DoLog ALL + find "${CT_DEBUG_INSTALL_DIR}" -type f -name gdbserver -exec rm -fv {} \; 2>&1 |CT_DoLog ALL unset ac_cv_func_strncmp_works |