Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master cauldron by Justin Boffemmyer (857044b64e3c9ab01b20e521de12b62ed90b6bad)

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 master cauldron by Justin Boffemmyer (857044b64e3c9ab01b20e521de12b62ed90b6bad)
  • Date: Fri, 28 Nov 2008 18:52:29 -0600

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

cauldron | 2 +-
libcauldron | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 857044b64e3c9ab01b20e521de12b62ed90b6bad
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

cauldron,libcauldron: forgot '$' in CERR_CHROOT

Forgot to include the '$' char in using $CERR_CHROOT.

diff --git a/cauldron b/cauldron
index d658b3f..196dab1 100755
--- a/cauldron
+++ b/cauldron
@@ -49,7 +49,7 @@ function cauldron_brew () {
# set up chroot for building inside $CAULDRON_BUILD
cauldron_chroot_init
# exit with error if chroot not defined
- [[ -n "$CAULDRON_CHROOT" ]] || exit CERR_CHROOT
+ [[ -n "$CAULDRON_CHROOT" ]] || exit $CERR_CHROOT

# build the cross-compile tool-chain targeted for the target sys
if [ -n $TARGET ]
diff --git a/libcauldron b/libcauldron
index 1fcfafa..85b1ee3 100755
--- a/libcauldron
+++ b/libcauldron
@@ -110,7 +110,7 @@ function cauldron_base_toolchain() {
local HOST_TRIPLE

# exit with error if chroot not defined
- [[ -n "$CAULDRON_CHROOT" ]] || exit CERR_CHROOT
+ [[ -n "$CAULDRON_CHROOT" ]] || exit $CERR_CHROOT

# set the value for HOST_TRIPLE
HOST_TRIPLE=$(cauldron_get_host_triple)
@@ -247,7 +247,7 @@ function cauldron_configure_toolchain() {

#-------------------------------------------------------------------------------
function cauldron_cross_toolchain() {
# exit with error if chroot not defined
- [[ -n "$CAULDRON_CHROOT" ]] || exit CERR_CHROOT
+ [[ -n "$CAULDRON_CHROOT" ]] || exit $CERR_CHROOT

# build the stage 1 tools
cauldron_configure_toolchain 1
@@ -290,7 +290,7 @@ function cauldron_build_iso_system() {
local spell

# exit with error if chroot not defined
- [[ -n "$CAULDRON_CHROOT" ]] || exit CERR_CHROOT
+ [[ -n "$CAULDRON_CHROOT" ]] || exit $CERR_CHROOT

# Since we will be installing from the running ISO system instead of a
giant
# tarball, for each spell we only need to make sure that the cache file is
@@ -389,7 +389,7 @@ function cauldron_add_installer() {

#-------------------------------------------------------------------------------
function cauldron_prepare() {
# exit with error if chroot not defined
- [[ -n "$CAULDRON_CHROOT" ]] || exit CERR_CHROOT
+ [[ -n "$CAULDRON_CHROOT" ]] || exit $CERR_CHROOT

# first, ensure that the build dir exists
mkdir -p ${CAULDRON_BUILD}



  • [SM-Commit] GIT changes to master cauldron by Justin Boffemmyer (857044b64e3c9ab01b20e521de12b62ed90b6bad), Justin Boffemmyer, 11/28/2008

Archive powered by MHonArc 2.6.24.

Top of Page