Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to test grimoire by David Brown

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Brown <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to test grimoire by David Brown
  • Date: Fri, 19 May 2006 22:21:02 -0500

GIT changes to test grimoire by David Brown <dmlb2000 AT gmail.com>:

libs/glibc/HISTORY | 4 ++++
libs/glibc/PRE_INSTALL | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 8905716ebdf5e10ca050792b261584b45ab01c0b
Author: David Brown <dmlb2000 AT gmail.com>
Commit: David Brown <dmlb2000 AT gmail.com>

glibc removed HOST from PRE_INSTALL for SMGL_COMPAT_ARCHS

diff --git a/libs/glibc/HISTORY b/libs/glibc/HISTORY
index 2d38626..35dc5b8 100644
--- a/libs/glibc/HISTORY
+++ b/libs/glibc/HISTORY
@@ -1,3 +1,7 @@
+2006-05-19 David Brown <dmlb2000 AT gmail.com>
+ * PRE_INSTALL: removed explicit check of HOST for check against
+ SMGL_COMPAT_ARCHS
+
2006-02-22 Juuso Alasuutari <juuso.alasuutari AT tamperelainen.org>
* DETAILS: patchlevel downgraded to previous value, no need to
recompile
diff --git a/libs/glibc/PRE_INSTALL b/libs/glibc/PRE_INSTALL
index 05ad75d..6ed6bbf 100755
--- a/libs/glibc/PRE_INSTALL
+++ b/libs/glibc/PRE_INSTALL
@@ -12,10 +12,10 @@ if [ -z $INSTALL_ROOT ]; then
if [[ $(uname -m) = ppc* ]]; then
LD=$(readlink /lib/ld.so.1) &&
ln -sf $SOURCE_DIRECTORY.bld/old.libs/$LD /lib/ld.so.1
- elif [[ $(uname -m) = x86_64 ]] && test -f /lib/ld-linux-x86-64.so.2 &&
[[ $HOST = "x86_64-unknown-linux-gnu" ]]; then
+ elif [[ $(uname -m) = x86_64 ]] && test -f /lib/ld-linux-x86-64.so.2 &&
[[ ${SMGL_COMPAT_ARCHS[1]} = "x86_64" ]]; then
LD=$(readlink /lib/ld-linux-x86-64.so.2) &&
ln -sf $SOURCE_DIRECTORY.bld/old.libs/$LD /lib/ld-linux-x86-64.so.2
- elif [[ $(uname -m) = x86_64 ]] && test -f /lib64/ld-linux-x86-64.so.2 &&
[[ $HOST = "x86_64-unknown-linux-gnu" ]]; then
+ elif [[ $(uname -m) = x86_64 ]] && test -f /lib64/ld-linux-x86-64.so.2 &&
[[ ${SMGL_COMPAT_ARCHS[1]} = "x86_64" ]]; then
LD=$(readlink /lib64/ld-linux-x86-64.so.2) &&
ln -sf $SOURCE_DIRECTORY.bld/old.libs/$LD /lib64/ld-linux-x86-64.so.2
else




Archive powered by MHonArc 2.6.24.

Top of Page