summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stefw@redhat.com>2016-08-09 16:46:49 +0200
committerStef Walter <stefw@redhat.com>2016-08-09 16:46:49 +0200
commitfedcaf873e4d08741407c7be1db8c2d73dcc1241 (patch)
tree9cf3bea8f0176f63b637045b91215131ef969286
parent77d0791d0d6baf6fcc7578e0d170d754850c4068 (diff)
downloadp11-kit-fedcaf873e4d08741407c7be1db8c2d73dcc1241.tar.gz
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).
-rw-r--r--doc/manual/Makefile.am10
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)