summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-10-23 23:49:47 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-10-23 23:49:47 (EDT)
commit43bc4c837f5b47a45efdafceb80b76a1fed41ffb (patch)
tree3c2cfb0a83eabbc25e3bd8460e09fb33a568572f
parent32e1667913f4061bfec27370147df6f1bac81ec1 (diff)
Fix quotes in "install" target.
-rw-r--r--man/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.in b/man/Makefile.in
index 68a42fb..d17aba1 100644
--- a/man/Makefile.in
+++ b/man/Makefile.in
@@ -100,7 +100,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