diff options
author | Marian Balakowicz <m8@semihalf.com> | 2006-09-07 12:05:53 +0200 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2006-09-07 12:05:53 +0200 |
commit | 4f0645eb7909635a72421de57904ef6531bbd82a (patch) | |
tree | 9b5e583664faa488ebc17907ea666b59d129373d /MAKEALL | |
parent | 0dab03ba8fb20ede7233f497b6c6db188986e7a8 (diff) | |
download | u-boot-midas-4f0645eb7909635a72421de57904ef6531bbd82a.tar.gz u-boot-midas-4f0645eb7909635a72421de57904ef6531bbd82a.tar.bz2 u-boot-midas-4f0645eb7909635a72421de57904ef6531bbd82a.zip |
Fix LOG_DIR directory creation error.
Add support for automatic creation of BUILD_DIR directory.
Diffstat (limited to 'MAKEALL')
-rwxr-xr-x | MAKEALL | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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="" |