summaryrefslogtreecommitdiff
path: root/scripts/build/libc_glibc.sh
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-06-16 21:44:45 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-06-16 21:44:45 (GMT)
commitd8bc11b1653185bc826680243cc32b87a6451df2 (patch)
treec08e59bfde4dd8c19a3992c6b8e238994805eab4 /scripts/build/libc_glibc.sh
parenteefa05172a5d1c06b2674c47663e5be85e234aee (diff)
Fix printing components' file names.
Diffstat (limited to 'scripts/build/libc_glibc.sh')
-rw-r--r--scripts/build/libc_glibc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/libc_glibc.sh b/scripts/build/libc_glibc.sh
index 5474cda..6b6e890 100644
--- a/scripts/build/libc_glibc.sh
+++ b/scripts/build/libc_glibc.sh
@@ -4,11 +4,11 @@
do_print_filename() {
[ "${CT_LIBC}" = "glibc" ] || return 0
- echo "${CT_LIBC_FILE}"
+ echo "glibc-${CT_LIBC_VERSION}"
for addon in `do_libc_add_ons_list " "`; do
# NPTL addon is not to be downloaded, in any case
[ "${addon}" = "nptl" ] && continue || true
- echo "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
+ echo "glibc-${addon}-${CT_LIBC_VERSION}"
done
}