From: Ben Shum Date: Wed, 17 Feb 2016 18:39:22 +0000 (-0500) Subject: LP#1544606: Copy the new directories we make for locales X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fbshum%2Flp1544606-fix-i18n-tpac-webstaff;p=working%2FEvergreen.git LP#1544606: Copy the new directories we make for locales Make it cp -r to copy the directories and not just the files (of which there won't be any by default). Signed-off-by: Ben Shum --- diff --git a/Open-ILS/src/Makefile.am b/Open-ILS/src/Makefile.am index 4e626842ae..6c4cf07f07 100644 --- a/Open-ILS/src/Makefile.am +++ b/Open-ILS/src/Makefile.am @@ -250,7 +250,7 @@ ilscore-install: -@if test -d @srcdir@/data/locale; then \ $(MKDIR_P) $(DESTDIR)$(datadir)/locale/ && \ echo "Installing template data files to $(datadir)/locale/" && \ - cp @srcdir@/data/locale/* $(datadir)/locale/ ;\ + cp -r @srcdir@/data/locale/* $(datadir)/locale/ ;\ fi; $(MKDIR_P) $(DESTDIR)$(datadir)/overdue/ sed -i 's|LOCALSTATEDIR|@localstatedir@|g' '$(DESTDIR)@sysconfdir@/oils_sip.xml.example'