Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (2d169b9f825ba722ee4b594cc7052e7c43e599bd)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (2d169b9f825ba722ee4b594cc7052e7c43e599bd)
  • Date: Mon, 11 Feb 2008 13:36:59 -0600

GIT changes to master sorcery by Jaka Kranjc <lynxlynxlynx AT sourcemage.org>:

ChangeLog | 3 +++
etc/sorcery/compile_config | 3 ++-
etc/sorcery/url | 6 +++---
3 files changed, 8 insertions(+), 4 deletions(-)

New commits:
commit 2d169b9f825ba722ee4b594cc7052e7c43e599bd
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

url, compile_config: better conditional sourcing #14304

diff --git a/ChangeLog b/ChangeLog
index 5e083d5..ec8e4e3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2008-02-11 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * url, compile_config: better conditional sourcing #14304
+
2008-02-10 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* confmeld: made the date of staging human readable

diff --git a/etc/sorcery/compile_config b/etc/sorcery/compile_config
index d9b5785..5e1fcc5 100644
--- a/etc/sorcery/compile_config
+++ b/etc/sorcery/compile_config
@@ -7,5 +7,6 @@
MAKE_NJOBS=${MAKE_NJOBS:-1}
RUN_COMPILER_DIR=/var/lib/sorcery/build

-[ -x $LOCAL_COMPILE_CONFIG ] &&
+if [[ -e $LOCAL_COMPILE_CONFIG ]]; then
. $LOCAL_COMPILE_CONFIG
+fi
diff --git a/etc/sorcery/url b/etc/sorcery/url
index 2e13024..1121fb7 100755
--- a/etc/sorcery/url
+++ b/etc/sorcery/url
@@ -34,7 +34,7 @@ FALLBACK_URL_MIRROR[3]=http://shlrm.org/sourcemage
# reverse the comments below to use rsync by default
CODEX_URL=${CODEX_URL:=$CODEX_TARBALL_URL}
#CODEX_URL=${CODEX_URL:=$CODEX_RSYNC_URL}
-

-
-test -e $LOCAL_URL_CONFIG && . $LOCAL_URL_CONFIG
+if [[ -e $LOCAL_URL_CONFIG ]]; then
+ . $LOCAL_URL_CONFIG
+fi



  • [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (2d169b9f825ba722ee4b594cc7052e7c43e599bd), Jaka Kranjc, 02/11/2008

Archive powered by MHonArc 2.6.24.

Top of Page