From: dbs Date: Fri, 5 Feb 2010 18:41:07 +0000 (+0000) Subject: Ensure target JavaScript directory is created before copying files into it X-Git-Tag: osrf_rel_2_0_1~180 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=63764b265ca32d9170c400ea259788be8d626771;p=OpenSRF.git 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 --- 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 \