* windows/Makefile.am: Fix uninstall-local rule (forget the $$file

part of the rm command).


git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@281 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Theodore A. Roth 2003-03-12 00:32:36 +00:00
parent dda9ea3d3d
commit afff7727bf
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-03-11 Theodore A. Roth <troth@openavr.org>
* windows/Makefile.am: Fix uninstall-local rule (forget the $$file
part of the rm command).
2003-03-11 Theodore A. Roth <troth@openavr.org>
* AUTHORS: Updated.

View File

@ -54,7 +54,7 @@ install-exec-local:
uninstall-local:
@for file in $(local_install_list); do \
echo " rm -f $(DESTDIR)$(bindir)"; \
rm -f $(DESTDIR)$(bindir); \
echo " rm -f $(DESTDIR)$(bindir)/$$file"; \
rm -f $(DESTDIR)$(bindir)/$$file; \
done