# HG changeset patch # User "Yann E. MORIN" # Date 1224623065 0 # Node ID 046c4ebf346dd87da2ebc310a1fb16a9cc28a904 # Parent ed1568e95b03931941f4537887cab4e03e6e4788 Fix using only custom patches. Reported by Patrick FLAIG: http://sourceware.org/ml/crossgcc/2008-10/msg00032.html /trunk/scripts/functions | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -r ed1568e95b03 -r 046c4ebf346d scripts/functions --- a/scripts/functions Tue Oct 21 17:01:31 2008 +0000 +++ b/scripts/functions Tue Oct 21 21:04:25 2008 +0000 @@ -609,7 +609,7 @@ official_patch_dir= custom_patch_dir= - [ "${CUSTOM_PATCH_ONLY}" = "y" ] || official_patch_dir="${CT_LIB_DIR}/patches/${base_file}/${ver_file}" + [ "${CT_CUSTOM_PATCH_ONLY}" = "y" ] || official_patch_dir="${CT_LIB_DIR}/patches/${base_file}/${ver_file}" [ "${CT_CUSTOM_PATCH}" = "y" ] && custom_patch_dir="${CT_CUSTOM_PATCH_DIR}/${base_file}/${ver_file}" for patch_dir in "${official_patch_dir}" "${custom_patch_dir}"; do if [ -n "${patch_dir}" -a -d "${patch_dir}" ]; then