diff options
author | Andrei Pavel <andrei@isc.org> | 2023-10-03 19:23:11 +0200 |
---|---|---|
committer | Andrei Pavel <andrei@isc.org> | 2023-10-06 09:07:14 +0200 |
commit | d28d19eae7b42c01dfaf4974b71753f9eb0ce569 (patch) | |
tree | 6ce3e27b289c50fb29fd9392fc068ee74db7557c /doc/sphinx/Makefile.am | |
parent | [#2750] add disclaimers about atxt files (diff) | |
download | kea-d28d19eae7b42c01dfaf4974b71753f9eb0ce569.tar.xz kea-d28d19eae7b42c01dfaf4974b71753f9eb0ce569.zip |
[#2750] limit ascii uml only to sequence diagrams
Diffstat (limited to '')
-rw-r--r-- | doc/sphinx/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/sphinx/Makefile.am b/doc/sphinx/Makefile.am index 967b32bc26..1cba905c01 100644 --- a/doc/sphinx/Makefile.am +++ b/doc/sphinx/Makefile.am @@ -166,9 +166,10 @@ else @ printf 'WARNING: xmllint not found. SVGs not formatted.\n' endif -uml-to-txt: $(umls) +# Only sequence diagrams support ASCII art. +uml-to-txt: uml/tkey.uml uml/update.uml @ @PLANTUML@ -ttxt $^ - for txt in $(txts); do sed 's/ *$$//g' $$txt > tmp; mv tmp $$txt; done + @ for txt in $(txts); do sed 's/ *$$//g' $$txt > tmp; mv tmp $$txt; done endif EXTRA_DIST += $(umls) |