diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-10-18 22:05:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-10-18 22:05:39 +0200 |
commit | 02c72d167116fb56360cbe7f9b80a8b33284ae6f (patch) | |
tree | beb73e1ec33b5bfd9edc13d5e2ddac32c96f8518 /doc.am | |
parent | a433c52593b825e57edb96f88f49f05b07ca7d4a (diff) | |
download | patches-02c72d167116fb56360cbe7f9b80a8b33284ae6f.tar patches-02c72d167116fb56360cbe7f9b80a8b33284ae6f.tar.gz |
build: Build the bootstrap-graph.{png,eps,pdf} under $(top_srcdir).
Fixes <http://bugs.gnu.org/15640>.
Reported by Eric Bavier <ericbavier@gmail.com>.
* doc.am (EXTRA_DIST): Add doc/images/bootstrap-graph.pdf to the
distribution.
(pdf-local, info-local, ps-local): Prepend $(top_srcdir) to the image
file names.
Diffstat (limited to 'doc.am')
-rw-r--r-- | doc.am | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -21,7 +21,8 @@ info_TEXINFOS = doc/guix.texi EXTRA_DIST += \ doc/fdl-1.3.texi \ doc/images/bootstrap-graph.dot \ - doc/images/bootstrap-graph.eps + doc/images/bootstrap-graph.eps \ + doc/images/bootstrap-graph.pdf infoimagedir = $(infodir)/images dist_infoimage_DATA = doc/images/bootstrap-graph.png @@ -47,6 +48,6 @@ DOT_OPTIONS = \ # We cannot add new dependencies to `doc/guix.pdf' & co. (info "(automake) # Extending"). Using the `-local' rules is imperfect, because they may be # triggered after the main rule. Oh, well. -pdf-local: doc/images/bootstrap-graph.pdf -info-local: doc/images/bootstrap-graph.png -ps-local: doc/images/bootstrap-graph.eps +pdf-local: $(top_srcdir)/doc/images/bootstrap-graph.pdf +info-local: $(top_srcdir)/doc/images/bootstrap-graph.png +ps-local: $(top_srcdir)/doc/images/bootstrap-graph.eps |