* 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:
parent
dda9ea3d3d
commit
afff7727bf
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue