* 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:
parent
ee96643119
commit
1d9430bfb0
|
@ -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>
|
2003-03-11 Theodore A. Roth <troth@openavr.org>
|
||||||
|
|
||||||
* AUTHORS: Updated.
|
* AUTHORS: Updated.
|
||||||
|
|
|
@ -54,7 +54,7 @@ install-exec-local:
|
||||||
|
|
||||||
uninstall-local:
|
uninstall-local:
|
||||||
@for file in $(local_install_list); do \
|
@for file in $(local_install_list); do \
|
||||||
echo " rm -f $(DESTDIR)$(bindir)"; \
|
echo " rm -f $(DESTDIR)$(bindir)/$$file"; \
|
||||||
rm -f $(DESTDIR)$(bindir); \
|
rm -f $(DESTDIR)$(bindir)/$$file; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue