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