New commits:
commit e38c6b5cbbe956696af0fcbf4e7efd894b2cfbee
Author: David Brown <dmlb2000 AT gmail.com>
Commit: David Brown <dmlb2000 AT gmail.com>
fixed bug 13411 making sure DISTCC_DIR is set properly and making sure it
exists so that it doesn't get tracked
diff --git a/ChangeLog b/ChangeLog
index b839df0..fa1858e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-02-24 David Brown <dmlb2000 AT gmail.com>
+ * cast: added DISTCC_DIR before run_build_spell
+ * compile_config: removed DISTCC_DIR
+ * run_compiler: check to make sure DISTCC_DIR exists then make it if
not
+
2007-02-19 Andrew Stitt <astitt AT sourcemage.org>
* select_list: update documentation and mangle variable names, bug
13458
+ DISTCC_DIR="$SOURCE_DIRECTORY/.distcc"
+
# this will run through the whole build process
run_build_spell
rc=$?
diff --git a/var/lib/sorcery/build/run_compiler
b/var/lib/sorcery/build/run_compiler
index 9733720..b6a0edf 100644
--- a/var/lib/sorcery/build/run_compiler
+++ b/var/lib/sorcery/build/run_compiler
@@ -29,6 +29,8 @@ if [[ $USE_DISTCC != off ]] &&
export DISTCC_DIR
export DISTCC_VERBOSE=0
export DISTCC_LOG=/dev/null
+
+ test -d "$DISTCC_DIR" || mkdir -p "$DISTCC_DIR"
else
DISTCC=""
fi
[SM-Commit] GIT changes to master sorcery by David Brown (e38c6b5cbbe956696af0fcbf4e7efd894b2cfbee),
David Brown, 02/24/2007