diff options
author | P. J. McDermott <pjm@nac.net> | 2012-08-02 22:50:00 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-08-02 22:50:00 (EDT) |
commit | 1a080c1eb510528357df1ab78bef93a20e858906 (patch) | |
tree | 412108821f151ac951d6b295103d41bf4ae8863b /lib/Makefile.in | |
parent | 2117731a335d901343ee1663ffe876bed0c23f25 (diff) |
Fix case of libdir makefile macro.
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 d790456..0847536 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -70,7 +70,7 @@ install: all uninstall: @for obj in $(OBJS); do \ printf ' RM %s\n' "$${obj}"; \ - rm -f "$(DESTDIR)/$(LIBDIR)/opkhelper/$${obj}"; \ + rm -f "$(DESTDIR)/$(libdir)/opkhelper/$${obj}"; \ done $(distdir): |