From 20d851ad9f2f2170e63dbf1d6e640580e323c614 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Mon, 6 Jan 2014 20:05:14 +0100 Subject: libc/glibc: fix downloading addons Do to glibc what we did to eglibc in #dff359adf15c. Only (very) old versions of glibc have other external addons, and they are no longer meaningful. But for consistency, do the change nonetheless. Signed-off-by: "Yann E. MORIN" --- scripts/build/libc/glibc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/build/libc') diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index 896432fe..47731e7f 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -32,9 +32,9 @@ do_libc_get() { nptl) continue;; esac - case "${CT_LIBC_GLIBC_PORTS_EXTERNAL}" in - y) ;; - *) continue;; + case "${addon}:${CT_LIBC_GLIBC_PORTS_EXTERNAL}" in + ports:y) ;; + ports:*) continue;; esac if ! CT_GetFile "glibc-${addon}-${CT_LIBC_VERSION}" \ -- cgit v1.2.3