From 0578a19643f366e7a33fd6087007b754c9a2409b Mon Sep 17 00:00:00 2001 From: Xavier Guimard Date: Thu, 15 Mar 2018 21:42:05 +0100 Subject: [PATCH] Bad mode --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index aa6f0af81..c1d16bd3f 100644 --- a/Makefile +++ b/Makefile @@ -707,7 +707,7 @@ install_portal_site: install_conf_dir done; cd - @cd $(SRCPORTALDIR)/site/templates; for f in `find * -type f ! -name '*.tpl'`; do \ mkdir -p $(RPORTALTEMPLATESDIR)/`dirname $$f`; \ - install -v $$f $(RPORTALTEMPLATESDIR)/$$f; \ + install -m 644 -v $$f $(RPORTALTEMPLATESDIR)/$$f; \ done; cd - @cd $(SRCPORTALDIR)/site/templates; for l in `find * -type l`; do \ echo link to do $$l `readlink $$l`; \ @@ -716,7 +716,7 @@ install_portal_site: install_conf_dir ln -s $$target $$l; \ cd -; \ done - if test "$(USEEXTERNALLIBS)" = "yes"; then \ + @if test "$(USEEXTERNALLIBS)" = "yes"; then \ rm -rvf $(PORTALEXTERNALLIBS); \ elif test "$(USEDEBIANLIBS)" = "yes"; then \ rm -rvf $(PORTALLIBSTOREMOVEFORDEBIAN); \