Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (95b52e312c032209bd9294fcf7d60af7eb67eab1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Justin Boffemmyer <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (95b52e312c032209bd9294fcf7d60af7eb67eab1)
  • Date: Mon, 29 Dec 2008 19:15:38 -0600

GIT changes to test cauldron by Justin Boffemmyer <flux AT sourcemage.org>:

scripts/spellcaster.sh | 5 ++++-
1 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 95b52e312c032209bd9294fcf7d60af7eb67eab1
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

scripts/spellcaster.sh: fix sorcery install

The sorcery install script needs to be called from the directory it
resides in or it will fail.

diff --git a/scripts/spellcaster.sh b/scripts/spellcaster.sh
index 3e8f480..9bec322 100755
--- a/scripts/spellcaster.sh
+++ b/scripts/spellcaster.sh
@@ -188,6 +188,7 @@ SPELLS
function setup_sys() {
local SPOOL="$TARGET/var/spool"
local SORCERY="sorcery-stable.tar.bz2"
+ local SORCERYDIR="$TARGET/usr/src/sorcery"

# unpack the sys caches into SYSDIR
for cache in $(<"$TARGET"/sys-list)
@@ -203,7 +204,9 @@ function setup_sys() {

# unpack and install sorcery into SYSDIR
tar jxf "$SPOOL"/$SORCERY -C "$TARGET/usr/src"
- "$TARGET/usr/src/sorcery/install" "$SYSDIR"
+ pushd "$SORCERYDIR" &> /dev/null
+ ./install "$SYSDIR"
+ popd
}

function setup_iso() {



  • [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (95b52e312c032209bd9294fcf7d60af7eb67eab1), Justin Boffemmyer, 12/29/2008

Archive powered by MHonArc 2.6.24.

Top of Page