From 964a5eb45f199dd8c9fb6a31341de648c415663c Mon Sep 17 00:00:00 2001 From: "Theodore A. Roth" Date: Wed, 12 Mar 2003 00:32:36 +0000 Subject: [PATCH] * 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 --- ChangeLog | 5 +++++ windows/Makefile.am | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8a832444..197e69cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-03-11 Theodore A. Roth + + * windows/Makefile.am: Fix uninstall-local rule (forget the $$file + part of the rm command). + 2003-03-11 Theodore A. Roth * AUTHORS: Updated. diff --git a/windows/Makefile.am b/windows/Makefile.am index 2e4f17ec..9b16678f 100644 --- a/windows/Makefile.am +++ b/windows/Makefile.am @@ -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