[Opensrf-commits] r1921 - trunk/src (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Feb 5 13:41:11 EST 2010
Author: dbs
Date: 2010-02-05 13:41:07 -0500 (Fri, 05 Feb 2010)
New Revision: 1921
Modified:
trunk/src/Makefile.am
Log:
Ensure target JavaScript directory is created before copying files into it
Thanks to Warren Layton for spotting this on a fresh install
Modified: trunk/src/Makefile.am
===================================================================
--- trunk/src/Makefile.am 2010-02-03 18:54:31 UTC (rev 1920)
+++ trunk/src/Makefile.am 2010-02-05 18:41:07 UTC (rev 1921)
@@ -53,10 +53,11 @@
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 \
More information about the opensrf-commits
mailing list