From: Bill Erickson Date: Thu, 8 Sep 2011 22:32:49 +0000 (-0400) Subject: Repair makefile.am: install template dirs that were previously under /default/ X-Git-Tag: sprint4-merge-nov22~5128^2~17 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=88c85fc8ef68db2477a0afd70650f225cc3cddc5;p=working%2FEvergreen.git Repair makefile.am: install template dirs that were previously under /default/ Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/Makefile.am b/Open-ILS/src/Makefile.am index a70bbcca90..3370dc8d65 100644 --- a/Open-ILS/src/Makefile.am +++ b/Open-ILS/src/Makefile.am @@ -162,15 +162,9 @@ uninstall-hook: ilscore-install: @echo $@ $(MKDIR_P) $(DESTDIR)$(TEMPLATEDIR) - cp -r @srcdir@/templates/base.tt2 $(DESTDIR)$(TEMPLATEDIR) - cp -r @srcdir@/templates/login.tt2 $(DESTDIR)$(TEMPLATEDIR) - cp -r @srcdir@/templates/default $(DESTDIR)$(TEMPLATEDIR) - cp -r @srcdir@/templates/marc $(DESTDIR)$(TEMPLATEDIR) - cp -r @srcdir@/templates/password-reset $(DESTDIR)$(TEMPLATEDIR) - @echo "Installing string templates to $(DESTDIR)$(TEMPLATEDIR)" - $(MKDIR_P) $(DESTDIR)$(TEMPLATEDIR) + @echo "Installing templates to $(DESTDIR)$(TEMPLATEDIR)" + cp -r @srcdir@/templates/* $(DESTDIR)$(TEMPLATEDIR) $(MKDIR_P) $(DESTDIR)$(datadir)/overdue/ - cp -r @srcdir@/templates/strings $(DESTDIR)$(TEMPLATEDIR) sed -i 's|LOCALSTATEDIR|@localstatedir@|g' '$(DESTDIR)@sysconfdir@/oils_sip.xml.example' sed -i 's|SYSCONFDIR|@sysconfdir@|g' '$(DESTDIR)@sysconfdir@/oils_sip.xml.example' sed -i 's|LIBDIR|@libdir@|g' '$(DESTDIR)@sysconfdir@/oils_sip.xml.example'