diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2009-08-03 08:35:43 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2009-08-04 06:25:26 -0700 |
commit | 23671e5358ffc0abfec83aeea9a515b09a6b35f3 (patch) | |
tree | 49ba004911e4fdacf6d3dcd4b7f68b967a59f5e8 | |
parent | 048f988aeb06fa360c6c41eaa50cb96b4b86e34e (diff) |
mklib: Ensure target directory exists for library
Instead of relying on the Makefile to always generate $(TOP)/$(LIB_DIR),
just have mklib handle creating the directory. This should fix any races
when using parallel make.
Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
-rwxr-xr-x | bin/mklib | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -971,5 +971,6 @@ esac # if [ ${INSTALLDIR} != "." ] ; then echo "mklib: Installing" ${FINAL_LIBS} "in" ${INSTALLDIR} + test -d ${INSTALLDIR} || mkdir -p ${INSTALLDIR} mv ${FINAL_LIBS} ${INSTALLDIR}/ fi |