diff options
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/eglibc.sh | 10 | ||||
-rw-r--r-- | scripts/build/libc/glibc.sh | 10 | ||||
-rw-r--r-- | scripts/build/libc/none.sh | 5 | ||||
-rw-r--r-- | scripts/build/libc/uClibc.sh | 6 |
4 files changed, 0 insertions, 31 deletions
diff --git a/scripts/build/libc/eglibc.sh b/scripts/build/libc/eglibc.sh index 6c08cdbf..01f8ceb8 100644 --- a/scripts/build/libc/eglibc.sh +++ b/scripts/build/libc/eglibc.sh @@ -1,15 +1,5 @@ # eglibc build functions (initially by Thomas JOURDAN). -do_print_filename() { - [ "${CT_LIBC}" = "eglibc" ] || return 0 - echo "eglibc-${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 "eglibc-${addon}-${CT_LIBC_VERSION}" - done -} - # Download eglibc repository do_eglibc_get() { CT_HasOrAbort svn diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index b9eb631b..e43d37bf 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -2,16 +2,6 @@ # 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 "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 "glibc-${addon}-${CT_LIBC_VERSION}" - done -} - # Download glibc do_libc_get() { # Ah! Not all GNU folks seem stupid. All glibc releases are in the same diff --git a/scripts/build/libc/none.sh b/scripts/build/libc/none.sh index 4053459c..520b8fde 100644 --- a/scripts/build/libc/none.sh +++ b/scripts/build/libc/none.sh @@ -2,10 +2,6 @@ # Copyright 2008 Yann E. MORIN # Licensed under the GPL v2. See COPYING in the root of this package -do_print_filename() { - : -} - do_libc_get() { : } @@ -22,7 +18,6 @@ do_libc_headers() { : } -# Build and install start files do_libc_start_files() { : } diff --git a/scripts/build/libc/uClibc.sh b/scripts/build/libc/uClibc.sh index ec9cc525..6b46d302 100644 --- a/scripts/build/libc/uClibc.sh +++ b/scripts/build/libc/uClibc.sh @@ -2,12 +2,6 @@ # Copyright 2007 Yann E. MORIN # Licensed under the GPL v2. See COPYING in the root of this package -do_print_filename() { - [ "${CT_LIBC}" = "uClibc" ] || return 0 - echo "uClibc-${CT_LIBC_VERSION}" - [ "${CT_LIBC_UCLIBC_LOCALES}" = "y" ] && echo "uClibc-locale-030818" || true -} - # Download uClibc do_libc_get() { libc_src="http://www.uclibc.org/downloads |