# HG changeset patch # User "Yann E. MORIN" # Date 1219786222 0 # Node ID 72253e8a1155b808e8c755b366163e6c47d0ea19 # Parent 0949a87e16292bd2d2394b2968c61d5177aa1a4f Missed one variable when converting to common options for eglibc and glibc (thanks Nate Case). /trunk/scripts/build/libc_eglibc.sh | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -r 0949a87e1629 -r 72253e8a1155 scripts/build/libc_eglibc.sh --- a/scripts/build/libc_eglibc.sh Tue Aug 26 16:47:47 2008 +0000 +++ b/scripts/build/libc_eglibc.sh Tue Aug 26 21:30:22 2008 +0000 @@ -277,7 +277,7 @@ none) ;; *) addons_list="${addons_list}${sep}${CT_THREADS}";; esac - [ "${CT_LIBC_EGLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports" + [ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports" addons_list="${addons_list%%${sep}}" echo "${addons_list##${sep}}" }