aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar Mark Griffiths <mark@thebespokepixel.com>2014-08-26 19:19:24 +0100
committerGravatar Mark Griffiths <mark@thebespokepixel.com>2014-09-03 14:43:27 +0100
commit98ebb21489b3206ed745aadb821b400a9f3fa5c6 (patch)
tree9d2aea1113833c9173b897913762d2c5de2d0d85 /Makefile.in
parent137abd0cfaa8959224f88a4ebe9584a51468cc88 (diff)
Consistency fixes
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index afcba3c9..cdb6fbc5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -285,10 +285,10 @@ doc: *.h *.cpp doc.h Doxyfile lexicon_filter
#
doc/refman.pdf: doc
- cd doc/latex;
- make;
- mv refman.pdf ..;
- cd ../..;
+ cd doc/latex; \
+ make; \
+ mv refman.pdf ..; \
+ cd ../..; \
rm -r doc/latex;
@@ -368,7 +368,8 @@ lexicon.txt: doc_src/commands.hdr $(FUNCTIONS_DIR_FILES) $(COMPLETIONS_DIR_FILES
-e "s|'\(.*\)'|func \1|p"; \
sed <share/functions/__fish_config_interactive.fish >>lexicon.tmp -n \
-e '/set_default/s/.*\(fish_[a-z][a-z_]*\).*$$/clrv \1/p'; \
- echo "sbin whoami\nsbin mkdir\nsbin basename" >> lexicon.tmp; \
+ sed <lexicon_filter.in >>lexicon.tmp -n \
+ -e '/^#!#/s/^#!# \(.... [a-z][a-z_]*\)/\1/p'; \
mv lexicon.tmp lexicon.txt; rm -f lexicon_catalog.tmp lexicon_catalog.txt;
#