summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-10-23 15:36:37 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-10-23 15:36:37 (EDT)
commit3c472477b492078c2af03f521a75e633a4bc823b (patch)
tree2f4e9dbe1656e28dca45f08f8ede979c92595714 /man
parent15b50a0d128c71eaca69a7fd48510d864c4ffe43 (diff)
Fix quotes in "install" target.
Thanks David Stanford for catching this.
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.in b/man/Makefile.in
index fe4350e..5cc6916 100644
--- a/man/Makefile.in
+++ b/man/Makefile.in
@@ -68,7 +68,7 @@ clean:
install: all
@for obj in $(OBJS); do \
printf ' INSTALL man/%s\n' "$${obj}"; \
- mkdir -p '$(DESTDIR)/$(mandir)/man$${obj##*.}'; \
+ mkdir -p "$(DESTDIR)/$(mandir)/man$${obj##*.}"; \
cp "$${obj}" "$(DESTDIR)/$(mandir)/man$${obj##*.}/$${obj}"; \
chmod 644 "$(DESTDIR)/$(mandir)/man$${obj##*.}/$${obj}"; \
done