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 | |
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>
-rw-r--r-- | config/libc/eglibc.in | 4 | ||||
-rw-r--r-- | scripts/build/libc/glibc-eglibc.sh-common | 6 |
2 files changed, 2 insertions, 8 deletions
diff --git a/config/libc/eglibc.in b/config/libc/eglibc.in index 3473c4fd..5007575a 100644 --- a/config/libc/eglibc.in +++ b/config/libc/eglibc.in @@ -78,10 +78,6 @@ config LIBC_VERSION config LIBC_EGLIBC_2_16_or_later bool -config LIBC_EGLIBC_HAS_PKGVERSION_BUGURL - bool - default y - if CONFIGURE_has_svn config EGLIBC_REVISION 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 |