Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by George Sherwood (58ae032889786b32ff85f1ff8f972a3a1a774913)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: George Sherwood <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by George Sherwood (58ae032889786b32ff85f1ff8f972a3a1a774913)
  • Date: Wed, 8 Nov 2006 11:24:29 -0600

GIT changes to master grimoire by George Sherwood <chat AT sourcemage.org>:

display/svgalib/HISTORY | 1 +
display/svgalib/INSTALL | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 58ae032889786b32ff85f1ff8f972a3a1a774913
Author: George Sherwood <chat AT sourcemage.org>
Commit: George Sherwood <chat AT sourcemage.org>

svgalib: Fix if statement in INSTALL to use the same methods as BUILD.

diff --git a/display/svgalib/HISTORY b/display/svgalib/HISTORY
index ec266cd..fa9132b 100644
--- a/display/svgalib/HISTORY
+++ b/display/svgalib/HISTORY
@@ -1,5 +1,6 @@
2006-11-08 George Sherwood <george AT beernabeer.com>
* BUILD: Simplify if statement. Fixes bug 13226 with bash 3.2
+ * INSTALL: Fix if statement to work the same way.

2006-09-25 Treeve Jelbert <treeve AT pi.be>
* DETAILS: version 1.9.25
diff --git a/display/svgalib/INSTALL b/display/svgalib/INSTALL
index 44d4ac4..7157544 100755
--- a/display/svgalib/INSTALL
+++ b/display/svgalib/INSTALL
@@ -1,8 +1,8 @@
make_normal &&
make prefix=${INSTALL_ROOT}/usr install &&
cd kernel/svgalib_helper &&
-if [ `uname -r | cut -d. -f1,2` == "2.6" ]
-then
+local V=$(get_kernel_version) &&
+if [[ "${V:0:3}" == "2.6" ]]; then
message "${MESSAGE_COLOR}Installing for 2.6...${DEFAULT_COLOR}" &&
make install
else



  • [SM-Commit] GIT changes to master grimoire by George Sherwood (58ae032889786b32ff85f1ff8f972a3a1a774913), George Sherwood, 11/08/2006

Archive powered by MHonArc 2.6.24.

Top of Page