Skip to content

Commit

Permalink
mk: Fix the regexp of SHOW_DOCS
Browse files Browse the repository at this point in the history
The tag marks were missing, and `make tips` didn't work.
  • Loading branch information
Armavica committed Feb 18, 2014
1 parent b0ce960 commit ece12d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile.in
Expand Up @@ -103,7 +103,7 @@
#
# </tips>
#
# <nittygritty>
# <nitty-gritty>
#
# # The Rust Build System
#
Expand Down Expand Up @@ -157,7 +157,7 @@
#
# Admittedly this is a little convoluted.
#
# </nittygritty>
# </nitty-gritty>
#

######################################################################
Expand Down
8 changes: 4 additions & 4 deletions mk/main.mk
Expand Up @@ -446,13 +446,13 @@ all: $(ALL_TARGET_RULES) $(GENERATED) docs
# $(1) is the name of the doc <section> in Makefile.in
# pick everything between tags | remove first line | remove last line
# | remove extra (?) line | strip leading `#` from lines
SHOW_DOCS = $(Q)awk '/$(1)/,/<\/$(1)>/' $(S)/Makefile.in | sed '1d' | sed '$$d' | sed 's/^\# \?//'
SHOW_DOCS = $(Q)awk '/<$(1)>/,/<\/$(1)>/' $(S)/Makefile.in | sed '1d' | sed '$$d' | sed 's/^\# \?//'

help:
$(call SHOW_DOCS,help)

hot-tips:
$(call SHOW_DOCS,hottips)
tips:
$(call SHOW_DOCS,tips)

nitty-gritty:
$(call SHOW_DOCS,nittygritty)
$(call SHOW_DOCS,nitty-gritty)

0 comments on commit ece12d8

Please sign in to comment.