diff options
author | P. J. McDermott <pjm@nac.net> | 2012-01-25 03:56:13 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-01-25 03:56:13 (EST) |
commit | 5664421b0db4c5525b0437ab01b78e66f1d72f0f (patch) | |
tree | 06b9c1a37ce79ae104e9de2907a9fb6a9d865cb4 /lib/Makefile.in | |
parent | a991b8c9a1a0019ef1a36bbec49c29827a3c57a2 (diff) |
Fix uninstallation.
* Read installation configuration file.
* Correctly spell macro names.
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r-- | lib/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index cc2f4cb..5d613e7 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -52,7 +52,7 @@ install: all .PHONY: uninstall uninstall: - @for obj in $(OBJ); do \ + @for obj in $(OBJS); do \ printf ' RM %s\n' "$${obj}"; \ rm -f "$(DESTDIR)/$(LIBDIR)/$${obj}"; \ done |