Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (3089734100895c9b85aec4a355ec8d2c71711ec4)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (3089734100895c9b85aec4a355ec8d2c71711ec4)
  • Date: Thu, 24 Apr 2008 00:21:30 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

kernels/linux/HISTORY | 5 +++++
kernels/linux/PRE_BUILD | 7 +++++--
2 files changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 3089734100895c9b85aec4a355ec8d2c71711ec4
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

linux: Only fix linux kernel for gcc >= 4.3.0 (Bug #14480) patch from
Jiri Golembiovsky <golemj AT gmail.com>

diff --git a/kernels/linux/HISTORY b/kernels/linux/HISTORY
index 0f0a628..b5ef869 100644
--- a/kernels/linux/HISTORY
+++ b/kernels/linux/HISTORY
@@ -1,3 +1,7 @@
+2008-04-23 Eric Sandall <sandalle AT sourcemage.org>
+ * PRE_BUILD: Only fix linux kernel for gcc >= 4.3.0 (Bug #14480)
+ patch from Jiri Golembiovsky <golemj AT gmail.com>
+
2008-04-21 Vlad Glagolev <stealth AT sourcemage.org>
* info/patches/maintenance_patches/patch-2.6.24.5: added

@@ -4084,3 +4088,4 @@
2002-08-20 Wolfgang Scheicher <worf AT sbox.tu-graz.ac.at>
* Rewrite - Attempt to merge several kernel spells into one
Now features a menu to select which version to build
+
diff --git a/kernels/linux/PRE_BUILD b/kernels/linux/PRE_BUILD
index 27e9888..032160a 100755
--- a/kernels/linux/PRE_BUILD
+++ b/kernels/linux/PRE_BUILD
@@ -161,8 +161,11 @@ else
fi &&

# fix build via gcc 4.3
-sed -i "s:-declaration:-declaration -fno-tree-scev-cprop:" \
- $LINUX_SOURCE_DIRECTORY/Makefile &&
+if [[ "$(installed_version gcc | sed 's:\.::g')" -ge "430" ]]
+then
+ sed -i "s:-declaration:-declaration -fno-tree-scev-cprop:" \
+ $LINUX_SOURCE_DIRECTORY/Makefile
+fi &&

# check to make sure .config exists
if [[ ! -f ./.config ]]



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (3089734100895c9b85aec4a355ec8d2c71711ec4), Eric Sandall, 04/24/2008

Archive powered by MHonArc 2.6.24.

Top of Page