summaryrefslogtreecommitdiffstats
path: root/locale
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-10-08 10:57:28 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-10-08 10:57:28 (EDT)
commita93c5c1fbf968097aedeb4d4d334a5e902d84c04 (patch)
tree5563b1eca19ab754e8bac138f63ecfd74af07cf5 /locale
parentb2305e8bf053e61ea6432194699aaf23a709b1a4 (diff)
Fix uninstall target of locale/Makefile.in.
Diffstat (limited to 'locale')
-rw-r--r--locale/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/locale/Makefile.in b/locale/Makefile.in
index 2c27170..fdc9cec 100644
--- a/locale/Makefile.in
+++ b/locale/Makefile.in
@@ -60,7 +60,8 @@ install: all
uninstall:
@for obj in $(OBJS); do \
printf ' RM %s\n' "$${obj}"; \
- rm -f "$(DESTDIR)/$(localedir)/$${obj}"; \
+ dest="$(DESTDIR)/$(localedir)/$${obj%/*}/LC_MESSAGES/$${obj##*/}"; \
+ rm -f "$${dest}"; \
done
$(distdir):