Missing semicolons (Closes: #916)

This commit is contained in:
Xavier Guimard 2016-01-27 17:49:49 +00:00
parent 04b50c29d8
commit 59442dec8c
1 changed files with 2 additions and 2 deletions

View File

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