summaryrefslogtreecommitdiffstats
path: root/lib/Makefile.in
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-01-29 20:49:33 (EST)
committer P. J. McDermott <pjm@nac.net>2012-01-29 20:51:54 (EST)
commit147e87860627d0a0ed4253200659b275ad30eeb0 (patch)
tree2ce46fdfdfac33240d9f62c613ed2fa2a28a0da6 /lib/Makefile.in
parentd97fa1a1419683d0722d9356f236577f7515494f (diff)
Fix installation path in 'lib/Makefile.in'.
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r--lib/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 5d613e7..107bc9b 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -47,12 +47,12 @@ clean:
install: all
@for obj in $(OBJS); do \
printf ' INSTALL lib/%s\n' "$${obj}"; \
- $(INSTALL) -D $${obj} "$(DESTDIR)/$(LIBDIR)/$${obj}"; \
+ $(INSTALL) -D $${obj} "$(DESTDIR)/$(LIBDIR)/opkhelper/$${obj}"; \
done
.PHONY: uninstall
uninstall:
@for obj in $(OBJS); do \
printf ' RM %s\n' "$${obj}"; \
- rm -f "$(DESTDIR)/$(LIBDIR)/$${obj}"; \
+ rm -f "$(DESTDIR)/$(LIBDIR)/opkhelper/$${obj}"; \
done