aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-01-03 15:17:48 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-01-03 15:17:48 -0800
commit9f33050a32cda5f1958ba74981a2d802969d7ffb (patch)
tree08284cdcc888277cedc0a51756dead48816bbb65 /Makefile.in
parentf73caeb6a372bbc264f1ea2958b3bad815eff216 (diff)
Change build_documentation to take its paths as arguments, and the Makefile.in to pass them
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 4 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 9f92ed37..7ef4f0c9 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -249,7 +249,7 @@ PROGRAMS := $(SIMPLE_PROGRAMS) @XSEL_BIN@ @SEQ_FALLBACK@
# Manual pages to install
#
-MANUALS := $(addsuffix .1, $(addprefix share/man/, \
+MANUALS := $(addsuffix .1, $(addprefix share/man/man1/, \
$(SIMPLE_PROGRAMS))) @XSEL_MAN_PATH@
@@ -488,10 +488,8 @@ common.o: $(COMMON_FILES)
share/man: $(HELP_SRC)
-mkdir share/man
touch share/man
- -rm -r help_doc
- ./build_tools/build_documentation.sh
- mv help_doc/man/man1/*.1 share/man
- rm -r help_doc
+ -rm -R share/man/man1
+ ./build_tools/build_documentation.sh Doxyfile.help ./doc_src ./share
#
# The build rules for installing/uninstalling fish
@@ -586,7 +584,7 @@ install-force: all install-translations
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/functions/; \
true; \
done;
- for i in share/man/*.1; do \
+ for i in share/man/man1/*.1; do \
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/man/man1/; \
true; \
done;