Ensure target JavaScript directory is created before copying files into it
authordbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Fri, 5 Feb 2010 18:41:07 +0000 (18:41 +0000)
committerdbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Fri, 5 Feb 2010 18:41:07 +0000 (18:41 +0000)
Thanks to Warren Layton for spotting this on a fresh install

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1921 9efc2488-bf62-4759-914b-345cdb29e865

src/Makefile.am

index ad03526..cca44d6 100644 (file)
@@ -53,10 +53,11 @@ endif
 SUBDIRS = $(MAYBE_CORE) $(MAYBE_PY) $(MAYBE_JA)
 
 install-exec-local:
-       mkdir -p $(VAR)
-       mkdir -p $(PID)
-       mkdir -p $(LOG)
-       mkdir -p $(SOCK)
+       $(MKDIR_P) $(VAR)
+       $(MKDIR_P) $(PID)
+       $(MKDIR_P) $(LOG)
+       $(MKDIR_P) $(SOCK)
+       $(MKDIR_P) $(jsdir)
 
 install-exec-hook:
        if [ "$(MAYBE_CORE)" ]; then \