summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-09-30 21:58:29 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-09-30 21:58:29 (EDT)
commit5985a6b3337ec0b25c11a24589db475955137775 (patch)
tree4bed62a078b9c72249efc975fd25879f985aaad8 /lib
parent378d353612b8873510a8b2c0c8eb45cae35b1ed2 (diff)
Fix "uninstall" target in lib/Makefile.in.
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 914d84c..e919b93 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -71,7 +71,7 @@ install: all
uninstall:
@for obj in $(OBJS); do \
printf ' RM %s\n' "$${obj}"; \
- rm -f "$(DESTDIR)/$(libdir)/opkhelper/$${obj}"; \
+ rm -f "$(DESTDIR)/$(libdir)/$${obj}"; \
done
$(distdir):