Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-rc-0.11 grimoire by Eric Sandall (1258d1c5a3d8783c8d900aa1b20a184988246161)

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 stable-rc-0.11 grimoire by Eric Sandall (1258d1c5a3d8783c8d900aa1b20a184988246161)
  • Date: Sun, 3 Jun 2007 12:36:58 -0500

GIT changes to stable-rc-0.11 grimoire by Eric Sandall
<sandalle AT sourcemage.org>:

kernels/bootsplash/BUILD | 2 +-
kernels/bootsplash/HISTORY | 3 +++
smgl/init.d/HISTORY | 3 +++
smgl/init.d/files/smgl_functions | 2 +-
4 files changed, 8 insertions(+), 2 deletions(-)

New commits:
commit 1258d1c5a3d8783c8d900aa1b20a184988246161
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

init.d: remove last bad grep #10439
(cherry picked from commit b71ade7e65848e8bec3dc4502ddedf772748ea4d)

commit cde6e7640817dd4f28f8d17dcc7c5d9701995c28
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

bootsplash: fix #13766
(cherry picked from commit 68300652163045874e86da2b6a4416ba558e1a7c)

diff --git a/kernels/bootsplash/BUILD b/kernels/bootsplash/BUILD
index f8c81f0..16946d9 100755
--- a/kernels/bootsplash/BUILD
+++ b/kernels/bootsplash/BUILD
@@ -1,4 +1,4 @@
-if use_gcc 4.0. ; then
+if use_gcc ^4; then
patch -p0 < $SCRIPT_DIRECTORY/mng.c.patch
fi &&
cd Utilities &&
diff --git a/kernels/bootsplash/HISTORY b/kernels/bootsplash/HISTORY
index a43bc83..428d2b9 100644
--- a/kernels/bootsplash/HISTORY
+++ b/kernels/bootsplash/HISTORY
@@ -1,3 +1,6 @@
+2007-06-03 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * BUILD: apply the mng patch to all gcc4 versions #13766
+
2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/smgl/init.d/HISTORY b/smgl/init.d/HISTORY
index efcd3ae..bf58df6 100644
--- a/smgl/init.d/HISTORY
+++ b/smgl/init.d/HISTORY
@@ -1,3 +1,6 @@
+2007-06-02 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * files/smgl_functions: remove grep usage #10439
+
2007-05-23 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* BUILD, FINAL: added temporary file workaround for #13363

diff --git a/smgl/init.d/files/smgl_functions
b/smgl/init.d/files/smgl_functions
index 2d42083..01352fb 100644
--- a/smgl/init.d/files/smgl_functions
+++ b/smgl/init.d/files/smgl_functions
@@ -138,7 +138,7 @@ export -f print_status
getpids()
{
local base=${1##*/}
- pidlist=$(builtin echo $(for i in $(pidof -o $$ -o $PPID -o '%PPID' -x
$base); do grep -vq '/etc/init[.]d' /proc/$i/cmdline && builtin echo $i;
done))
+ pidlist=$(builtin echo $(for i in $(pidof -o $$ -o $PPID -o '%PPID' -x
$base); do awk -v i=$i '!/\/etc\/init[.]d/ {print i}' < /proc/$i/cmdline;
done))
}

loadproc()



  • [SM-Commit] GIT changes to stable-rc-0.11 grimoire by Eric Sandall (1258d1c5a3d8783c8d900aa1b20a184988246161), Eric Sandall, 06/03/2007

Archive powered by MHonArc 2.6.24.

Top of Page