summaryrefslogtreecommitdiffstats
path: root/MAKEALL
diff options
context:
space:
mode:
authorMarian Balakowicz <m8@semihalf.com>2006-09-07 12:05:53 +0200
committerMarian Balakowicz <m8@semihalf.com>2006-09-07 12:05:53 +0200
commit4f0645eb7909635a72421de57904ef6531bbd82a (patch)
tree9b5e583664faa488ebc17907ea666b59d129373d /MAKEALL
parent0dab03ba8fb20ede7233f497b6c6db188986e7a8 (diff)
downloadbarebox-4f0645eb7909635a72421de57904ef6531bbd82a.tar.gz
barebox-4f0645eb7909635a72421de57904ef6531bbd82a.tar.xz
Fix LOG_DIR directory creation error.
Add support for automatic creation of BUILD_DIR directory.
Diffstat (limited to 'MAKEALL')
-rwxr-xr-xMAKEALL2
1 files changed, 1 insertions, 1 deletions
diff --git a/MAKEALL b/MAKEALL
index d2f86d3ac8..112be32ab7 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -18,7 +18,7 @@ if [ ! "${BUILD_DIR}" ] ; then
BUILD_DIR="."
fi
-[ -d ${MAKEALL_LOGDIR} ] || mkdir ${MAKEALL_LOGDIR} || exit 1
+[ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
LIST=""