diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-08-29 21:50:13 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-08-29 21:58:53 +0200 |
commit | cb9e50f618081275b50489943d5655abfb85c84d (patch) | |
tree | 5b15e7d3f22b1c898df4d42e341f5abd74a6f666 /doc.am | |
parent | a9424c0887f688e812e498a2556df4b1d9218268 (diff) | |
download | patches-cb9e50f618081275b50489943d5655abfb85c84d.tar patches-cb9e50f618081275b50489943d5655abfb85c84d.tar.gz |
build: Use `missing' for `dot'.
* configure.ac: Substitute `DOT'.
* doc.am (.dot.png, .dot.eps): Use $(DOT).
Diffstat (limited to 'doc.am')
-rw-r--r-- | doc.am | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,11 +33,11 @@ DOT_OPTIONS = \ -Nfontsize=9 -Nheight=.1 -Nwidth=.1 .dot.png: - dot -Tpng $(DOT_OPTIONS) < "$<" > "$@.tmp" + $(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$@.tmp" mv "$@.tmp" "$@" .dot.eps: - dot -Teps $(DOT_OPTIONS) < "$<" > "$@.tmp" + $(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$@.tmp" mv "$@.tmp" "$@" # We cannot add new dependencies to `doc/guix.pdf' & co. (info "(automake) |