From 3554e4ddcad910aff304dc6de798a7207d92356d Mon Sep 17 00:00:00 2001 From: Rene Rebe Date: Sun, 28 Dec 2003 17:26:50 +0000 Subject: [PATCH] fixed glibc* stage-0 on hppa git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2074 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- Documentation/Developers/CHANGELOG-RENE | 6 ++++++ package/base/glibc23/glibc23.conf | 10 ++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Documentation/Developers/CHANGELOG-RENE b/Documentation/Developers/CHANGELOG-RENE index 26b51a164..ce8148d49 100644 --- a/Documentation/Developers/CHANGELOG-RENE +++ b/Documentation/Developers/CHANGELOG-RENE @@ -1,4 +1,10 @@ +*) 2003-12-28 (2.0.0-rc3 - 2.0.0-rc4) + + - fixed dietlibc to use the correct arch_machine (fixes x86_64 build + and maybe sparc64) as well as line-break fixes + - fixed glibc* stage-0 on hppa + *) 2003-12-27 (2.0.0-rc3 - 2.0.0-rc4) - Valentin Ziegler: updated flex (2.5.31) diff --git a/package/base/glibc23/glibc23.conf b/package/base/glibc23/glibc23.conf index d2975d1d3..77ce9b07f 100644 --- a/package/base/glibc23/glibc23.conf +++ b/package/base/glibc23/glibc23.conf @@ -115,8 +115,14 @@ glibc_prepatch() { glibc_stage0() { mkdir -p objdir; cd objdir - eval "../configure --enable-add-ons ${confopt% --target=*}" \ - "--build=\$arch_build --host=\$arch_target" + contopt="${confopt% --target=*}" + + var_append confopt " " "--enable-add-ons --build=\$arch_build \ + --host=\$arch_target" + # due to assembler check - and we do not yet have as ... + [ $arch = hppa ] && var_append confopt " " "--enable-hacker-mode" + + eval "../configure $confopt" make -k cross-compiling=yes install-headers || true # make some final adaptions