From 63764b265ca32d9170c400ea259788be8d626771 Mon Sep 17 00:00:00 2001
From: dbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Date: Fri, 5 Feb 2010 18:41:07 +0000
Subject: [PATCH] Ensure target JavaScript directory is created before copying
 files into it

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 | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index ad03526..cca44d6 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -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 \
-- 
2.11.0