diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-07-24 23:38:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-07-24 23:50:55 +0200 |
commit | 931c132a58d86287d7a73964f9731a3b578538cc (patch) | |
tree | 38dd8c2d521cf6fe0dce4641a09013cca70c4f8e /doc.am | |
parent | 054e85761fc0743ebe957f759f3e6b46739d5a68 (diff) | |
download | patches-931c132a58d86287d7a73964f9731a3b578538cc.tar patches-931c132a58d86287d7a73964f9731a3b578538cc.tar.gz |
doc: Make sure out-of-source-tree builds find os-config.tmpl.
* Makefile.am (BUILT_SOURCES): New variable.
* daemon.am (BUILT_SOURCES): Use +=.
* doc.am (BUILT_SOURCES, MAINTAINERCLEANFILES, EXTRA_DIST): Add
doc/os-config.texi.
(doc/os-config.texi): New target.
* doc/guix.texi (System Installation): Include os-config.texi.
Diffstat (limited to 'doc.am')
-rw-r--r-- | doc.am | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,5 +1,5 @@ # GNU Guix --- Functional package management for GNU -# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> +# Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org> # Copyright © 2013 Andreas Enge <andreas@enge.fr> # # This file is part of GNU Guix. @@ -24,6 +24,15 @@ EXTRA_DIST += \ doc/images/bootstrap-graph.eps \ doc/images/bootstrap-graph.pdf +# Bundle this file so that makeinfo finds it in out-of-source-tree builds. +BUILT_SOURCES += doc/os-config.texi +EXTRA_DIST += doc/os-config.texi +MAINTAINERCLEANFILES = doc/os-config.texi + +doc/os-config.texi: gnu/system/os-config.tmpl + $(MKDIR_P) "`dirname "$@"`" + cp "$<" "$@" + infoimagedir = $(infodir)/images dist_infoimage_DATA = doc/images/bootstrap-graph.png |