Fix make uninstall

The double quotes in make uninstall prevented `rm` from working properly at least on OS X
This commit is contained in:
Tadej Novak 2016-10-21 14:35:31 +02:00 committed by GitHub
parent b1eead2f8b
commit 61fb72fc0d
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ install: $(PACKAGE_STY) $(DOC_PDF)
@cp $(DOC_PDF) $(DOC_DIR)
uninstall:
@rm -f "$(addprefix $(INSTALL_DIR)/, $(PACKAGE_STY))"
@rm -f $(addprefix $(INSTALL_DIR)/, $(PACKAGE_STY))
@rmdir "$(INSTALL_DIR)"
@rm -f "$(DOC_DIR)/$(notdir $(DOC_PDF))"
@rmdir "$(DOC_DIR)"