mirror of
https://github.com/SELinuxProject/selinux
synced 2025-02-26 06:20:32 +00:00
secilc: Fix documentation build for OS X systems
Since Darwin systems do not have GNU sed installed, the Darwin sed is missing the "regexp-extended" flag needed to modify the secilc markdown files before processing with pandoc. A quick fix for Mac users is to `brew install gnu-sed` and to use gsed. Signed-off-by: Yuli Khodorkovskiy <ykhodo@gmail.com>
This commit is contained in:
parent
fd43043ba2
commit
733b8005d8
@ -31,6 +31,12 @@ PANDOC_FILE_LIST = $(addprefix $(TMPDIR)/,$(FILE_LIST))
|
||||
PDF_OUT=CIL_Reference_Guide.pdf
|
||||
HTML_OUT=CIL_Reference_Guide.html
|
||||
PANDOC = pandoc
|
||||
SED ?= sed
|
||||
|
||||
OS := $(shell uname)
|
||||
ifeq ($(OS), Darwin)
|
||||
SED := gsed
|
||||
endif
|
||||
|
||||
all: html pdf
|
||||
|
||||
@ -40,12 +46,12 @@ $(TMPDIR):
|
||||
$(TMPDIR)/%.md: %.md | $(TMPDIR)
|
||||
cp -f $< $(TMPDIR)/
|
||||
@# Substitute markdown links for conversion into PDF links
|
||||
sed -i -re 's:(\[`[^`]*`\])\([^#]*([^\)]):\1\(\2:g' $@
|
||||
$(SED) -i -re 's:(\[`[^`]*`\])\([^#]*([^\)]):\1\(\2:g' $@
|
||||
|
||||
$(TMPDIR)/policy.cil: $(TESTDIR)/policy.cil
|
||||
cp -f $< $@
|
||||
@# add a title for the TOC to policy.cil. This is needed to play nicely with the PDF conversion.
|
||||
sed -i '1i Example Policy\n=========\n```' $@
|
||||
$(SED) -i '1i Example Policy\n=========\n```' $@
|
||||
echo '```' >> $@
|
||||
|
||||
html: $(PANDOC_FILE_LIST) $(TMPDIR)/policy.cil
|
||||
|
Loading…
Reference in New Issue
Block a user