Fix using only custom patches.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Oct 21 21:04:25 2008 +0000 (2008-10-21)
changeset 956046c4ebf346d
parent 955 ed1568e95b03
child 957 da68cf95b4e7
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(-)
scripts/functions
     1.1 --- a/scripts/functions	Tue Oct 21 17:01:31 2008 +0000
     1.2 +++ b/scripts/functions	Tue Oct 21 21:04:25 2008 +0000
     1.3 @@ -609,7 +609,7 @@
     1.4  
     1.5      official_patch_dir=
     1.6      custom_patch_dir=
     1.7 -    [ "${CUSTOM_PATCH_ONLY}" = "y" ] || official_patch_dir="${CT_LIB_DIR}/patches/${base_file}/${ver_file}"
     1.8 +    [ "${CT_CUSTOM_PATCH_ONLY}" = "y" ] || official_patch_dir="${CT_LIB_DIR}/patches/${base_file}/${ver_file}"
     1.9      [ "${CT_CUSTOM_PATCH}" = "y" ] && custom_patch_dir="${CT_CUSTOM_PATCH_DIR}/${base_file}/${ver_file}"
    1.10      for patch_dir in "${official_patch_dir}" "${custom_patch_dir}"; do
    1.11          if [ -n "${patch_dir}" -a -d "${patch_dir}" ]; then