diff options
author | Tomek Mrugalski <tomek@isc.org> | 2021-06-22 15:24:01 +0200 |
---|---|---|
committer | Tomek Mrugalski <tomek@isc.org> | 2021-06-23 12:04:18 +0200 |
commit | fa370bd2c8ddc6bc1877780a3821ed18c479a276 (patch) | |
tree | 2d903a2f0b1dacc075be1092847fa45e8121a4f7 /doc/Makefile.am | |
parent | [#745] extract_bnf can now support .md (diff) | |
download | kea-fa370bd2c8ddc6bc1877780a3821ed18c479a276.tar.xz kea-fa370bd2c8ddc6bc1877780a3821ed18c479a276.zip |
[#745] Make grammar no longer fails on existing dir
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 1858c2218d..75082a078e 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -78,7 +78,7 @@ nobase_dist_doc_DATA += examples/netconf/simple-dhcp6.json grammar: if GENERATE_DOCS if GENERATE_PARSER - mkdir $(abs_top_srcdir)/doc/sphinx/grammar + mkdir -p $(abs_top_srcdir)/doc/sphinx/grammar $(abs_top_srcdir)/tools/extract_bnf.sh $(abs_top_srcdir)/src/bin/dhcp4/dhcp4_parser > $(abs_top_srcdir)/doc/sphinx/grammar/grammar-dhcp4-parser.txt $(abs_top_srcdir)/tools/extract_bnf.sh $(abs_top_srcdir)/src/bin/dhcp6/dhcp6_parser > $(abs_top_srcdir)/doc/sphinx/grammar/grammar-dhcp6-parser.txt $(abs_top_srcdir)/tools/extract_bnf.sh $(abs_top_srcdir)/src/bin/d2/d2_parser > $(abs_top_srcdir)/doc/sphinx/grammar/grammar-d2-parser.txt |