projects
/
opensrf
/
bjwebb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f0dcf61
)
Ensure target JavaScript directory is created before copying files into it
author
dbs
<dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Fri, 5 Feb 2010 18:41:07 +0000
(18:41 +0000)
committer
dbs
<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
patch
|
blob
|
history
diff --git
a/src/Makefile.am
b/src/Makefile.am
index
ad03526
..
cca44d6
100644
(file)
--- 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 \