diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-12-26 13:30:51 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-12-26 13:30:51 +0100 |
commit | ea77a251e52c541263557dcb21f8d48d405337e6 (patch) | |
tree | 395bf03a4261a3b91ebdedda29a20e3c997b1f46 /scripts/build/libc | |
parent | 340875e473ccc1cbfce13529ad2cbb5ffc0660f7 (diff) | |
download | crosstool-ng-ea77a251e52c541263557dcb21f8d48d405337e6.tar.gz crosstool-ng-ea77a251e52c541263557dcb21f8d48d405337e6.tar.bz2 crosstool-ng-ea77a251e52c541263557dcb21f8d48d405337e6.zip |
libc/glibc: both glibc and eglibc have pkgversion and bugurl
Well, all eglibc version we support do, and latest glibc versions
we support do.
Not all glibc versions do, but older versions simply ignore the
unrecognised ./configure flags.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/glibc-eglibc.sh-common | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/build/libc/glibc-eglibc.sh-common b/scripts/build/libc/glibc-eglibc.sh-common index 39321092..2ca24534 100644 --- a/scripts/build/libc/glibc-eglibc.sh-common +++ b/scripts/build/libc/glibc-eglibc.sh-common @@ -276,10 +276,8 @@ do_libc_backend_once() { *) extra_config+=("--enable-add-ons=$(do_libc_add_ons_list ,)");; esac - if [ "${CT_LIBC_EGLIBC_HAS_PKGVERSION_BUGURL}" = "y" ]; then - extra_config+=("--with-pkgversion=${CT_PKGVERSION}") - [ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}") - fi + extra_config+=("--with-pkgversion=${CT_PKGVERSION}") + [ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}") # Extract the endianness options if any # This should cover all possible endianness options |