* 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/avrdude@281 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
troth
2003-03-12 00:32:36 +00:00
parent ee96643119
commit 1d9430bfb0
2 changed files with 7 additions and 2 deletions

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