From 37cce18efa5466b2b7d6b7cd23e7dd782987a6a0 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sat, 16 Jun 2007 18:08:14 +0000 Subject: Add a function to print each component's filename: this eases building the tarball of the generated toolchain. Hard-link the libfloat tarball instead of soft-link: this also eases building the afore-mentioned tarball. --- scripts/build/libc_glibc.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'scripts/build/libc_glibc.sh') diff --git a/scripts/build/libc_glibc.sh b/scripts/build/libc_glibc.sh index d6b9049e..5474cda8 100644 --- a/scripts/build/libc_glibc.sh +++ b/scripts/build/libc_glibc.sh @@ -2,6 +2,16 @@ # Copyright 2007 Yann E. MORIN # Licensed under the GPL v2. See COPYING in the root of this package +do_print_filename() { + [ "${CT_LIBC}" = "glibc" ] || return 0 + echo "${CT_LIBC_FILE}" + 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}" + done +} + # Download glibc do_libc_get() { # Ah! Not all GNU folks seem stupid. All glibc releases are in the same -- cgit v1.2.3