summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@free.fr>2014-01-06 19:05:14 (GMT)
committerYann E. MORIN" <yann.morin.1998@free.fr>2014-01-06 19:05:14 (GMT)
commit20d851ad9f2f2170e63dbf1d6e640580e323c614 (patch)
tree8298d45f90942e56b5f14358a789ccafb88fdd94
parent2071cfb13ea9271b95c13c53f2c85536feab6b69 (diff)
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" <yann.morin.1998@free.fr>
-rw-r--r--scripts/build/libc/glibc.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh
index 896432f..47731e7 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}" \