Fix a bug in 'uninstall-exec' target.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@93 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
roktas 2006-11-12 19:56:59 +00:00
parent 3ed8fc8784
commit 8e5f3e684c

View file

@ -155,7 +155,7 @@ install-exec: build-exec
$(INSTALL) -d $(BINPATH); \
for f in $(PROGS); do $(INSTALL_PROGRAM) $$f $(BINPATH)/; done
uninstall-exec:
-for f in $(PROGS); do rm -f $(BINPATH)/$$f; done
-for f in $(notdir $(PROGS)); do rm -f $(BINPATH)/$$f; done
# Program + user documents installation.
.PHONY: install-program uninstall-program