Missing semicolons (Closes: #916)

This commit is contained in:
Xavier Guimard 2016-01-27 17:49:49 +00:00
parent 04b50c29d8
commit 59442dec8c

View File

@ -471,7 +471,7 @@ install_manager_site: install_conf_dir
> $(RMANAGERTEMPLATESDIR)/`basename $$f`; \ > $(RMANAGERTEMPLATESDIR)/`basename $$f`; \
done done
@if test "$(USEEXTERNALLIBS)" = "yes"; then \ @if test "$(USEEXTERNALLIBS)" = "yes"; then \
rm -rvf $(MANAGEREXTERNALLIBS) \ rm -rvf $(MANAGEREXTERNALLIBS); \
elif test "$(USEDEBIANLIBS)" = "yes"; then \ elif test "$(USEDEBIANLIBS)" = "yes"; then \
rm -rvf $(MANAGERLIBSTOREMOVEFORDEBIAN); \ rm -rvf $(MANAGERLIBSTOREMOVEFORDEBIAN); \
fi fi
@ -503,7 +503,7 @@ install_portal_site: install_conf_dir
mv -f $$f.tmp $$f; \ mv -f $$f.tmp $$f; \
done done
@if test "$(USEEXTERNALLIBS)" = "yes"; then \ @if test "$(USEEXTERNALLIBS)" = "yes"; then \
rm -rvf $(PORTALEXTERNALLIBS) \ rm -rvf $(PORTALEXTERNALLIBS); \
elif test "$(USEDEBIANLIBS)" = "yes"; then \ elif test "$(USEDEBIANLIBS)" = "yes"; then \
rm -rvf $(PORTALLIBSTOREMOVEFORDEBIAN); \ rm -rvf $(PORTALLIBSTOREMOVEFORDEBIAN); \
fi fi