diff options
author | Stef Walter <stefw@redhat.com> | 2016-08-09 16:46:49 +0200 |
---|---|---|
committer | Stef Walter <stefw@redhat.com> | 2016-08-09 16:46:49 +0200 |
commit | fedcaf873e4d08741407c7be1db8c2d73dcc1241 (patch) | |
tree | 9cf3bea8f0176f63b637045b91215131ef969286 /doc | |
parent | 77d0791d0d6baf6fcc7578e0d170d754850c4068 (diff) |
doc: Fix interpolation of p11-kit configuration paths in documentation
Previously these were expanded based on the home directory of the
one building the documentation (me).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/Makefile.am | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/manual/Makefile.am b/doc/manual/Makefile.am index c3dfe2a..c161b19 100644 --- a/doc/manual/Makefile.am +++ b/doc/manual/Makefile.am @@ -110,11 +110,11 @@ $(builddir)/p11-kit-overrides.txt: $(srcdir)/p11-kit-overrides.txt # Generate our files with variables sysdir.xml: - $(AM_V_GEN) echo -n $(p11_system_config) > "$@" + $(AM_V_GEN) echo -n '$(p11_system_config)' > "$@" userdir.xml: - $(AM_V_GEN) echo -n $(p11_user_config) > "$@" + $(AM_V_GEN) echo -n '$(p11_user_config)' > "$@" version.xml: - $(AM_V_GEN) echo -n $(VERSION) > "$@" + $(AM_V_GEN) echo -n '$(VERSION)' > "$@" # This includes the standard gtk-doc make rules, copied by gtkdocize. include $(top_srcdir)/build/gtk-doc.make @@ -158,6 +158,7 @@ MAN_IN_FILES = \ $(NULL) CLEANFILES += \ + $(generate_files) \ $(man1_MANS) \ $(man5_MANS) \ $(man8_MANS) \ @@ -165,7 +166,4 @@ CLEANFILES += \ EXTRA_DIST += \ $(MAN_IN_FILES) \ - sysdir.xml \ - userdir.xml \ - version.xml \ $(NULL) |