# HG changeset patch # User "Yann E. MORIN" # Date 1201545631 0 # Node ID 5d4020b8d22e3a067dec91b81df20b7038fee6ff # Parent 37e5c178146065408fd1498c0a0defb71b44a45b Patch from Michael Abbott to allow build to work with ancient findutils. diff -r 37e5c1781460 -r 5d4020b8d22e scripts/crosstool.sh --- a/scripts/crosstool.sh Fri Jan 18 20:04:20 2008 +0000 +++ b/scripts/crosstool.sh Mon Jan 28 18:40:31 2008 +0000 @@ -397,9 +397,9 @@ done CT_DoLog DEBUG "Removing access to the build system tools" - find "${CT_PREFIX_DIR}/bin" -name "${CT_BUILD}-"'*' -exec rm -fv {} \+ |CT_DoLog DEBUG - find "${CT_PREFIX_DIR}/bin" -name "${CT_UNIQ_BUILD}-"'*' -exec rm -fv {} \+ |CT_DoLog DEBUG - find "${CT_PREFIX_DIR}/bin" -name "${CT_HOST}-"'*' -exec rm -fv {} \+ |CT_DoLog DEBUG + find "${CT_PREFIX_DIR}/bin" -name "${CT_BUILD}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG + find "${CT_PREFIX_DIR}/bin" -name "${CT_UNIQ_BUILD}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG + find "${CT_PREFIX_DIR}/bin" -name "${CT_HOST}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG # Install the /populator/ CT_DoLog EXTRA "Installing the populate helper"