[open-ils-commits] r15458 - trunk/Open-ILS/web (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Feb 5 13:54:07 EST 2010
Author: dbs
Date: 2010-02-05 13:54:03 -0500 (Fri, 05 Feb 2010)
New Revision: 15458
Modified:
trunk/Open-ILS/web/Makefile.am
Log:
Ensure target directory exists before creating links therein
Thanks to Warren Layton for spotting this in a fresh install
Modified: trunk/Open-ILS/web/Makefile.am
===================================================================
--- trunk/Open-ILS/web/Makefile.am 2010-02-05 18:52:00 UTC (rev 15457)
+++ trunk/Open-ILS/web/Makefile.am 2010-02-05 18:54:03 UTC (rev 15458)
@@ -78,10 +78,12 @@
chmod 755 $(DESTDIR)$(CGIDIR)/*cgi
install-data-local:
+ $(MKDIR_P) $(DESTDIR)$(WEBDIR)/opac/common/js
for i in $(OPACJS); do \
cd $(DESTDIR)$(WEBDIR)/opac/common/js && \
rm -f `basename $$i` && $(LN_S) $$i . ; \
done
+ $(MKDIR_P) $(DESTDIR)$(WEBDIR)/js/dojo/opensrf
for i in $(JSDOJOSRF); do \
cd $(DESTDIR)$(WEBDIR)/js/dojo/opensrf && \
rm -f `basename $$i` && $(LN_S) $$i . ; \
More information about the open-ils-commits
mailing list