diff options
author | Thomas Haller <thaller@redhat.com> | 2017-02-15 18:02:52 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2017-02-15 18:36:24 +0100 |
commit | 4de6f603e3631975039476f752da7b8d6331019d (patch) | |
tree | 022636231bd450502c3d32a25bfa62a39568c078 /man/common.ent.in | |
parent | 0cad8307a5beaf1f2d01837687588e59d23c5884 (diff) |
build: use `sed` instead of AC_SUBST() to generate man/common.ent
Otherwise, substitions are not properly expanded.
For example
- "AC_SUBST(nmrundir, '${runstatedir}'/$PACKAGE, [NetworkManager runtime state directory])"
gives ${runstatedir}/NetworkManager/resolv.conf
- "AC_SUBST(nmrundir, "${runstatedir}/$PACKAGE", [NetworkManager runtime state directory])"
gives ${prefix}/var/run/NetworkManager/resolv.conf
Diffstat (limited to 'man/common.ent.in')
-rw-r--r-- | man/common.ent.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/common.ent.in b/man/common.ent.in index b3a4bca8f..ddfbb69a6 100644 --- a/man/common.ent.in +++ b/man/common.ent.in @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" ?> <!ENTITY NM_VERSION "@NM_VERSION@"> <!ENTITY sysconfdir "@sysconfdir@"> -<!ENTITY nmrundir "@nmrundir_@"> +<!ENTITY nmrundir "@nmrundir@"> <!ENTITY NM_CONFIG_DEFAULT_MAIN_AUTH_POLKIT_TEXT "@NM_CONFIG_DEFAULT_MAIN_AUTH_POLKIT_TEXT@"> <!ENTITY NM_CONFIG_DEFAULT_LOGGING_BACKEND_TEXT "@NM_CONFIG_DEFAULT_LOGGING_BACKEND_TEXT@"> <!ENTITY NM_CONFIG_DEFAULT_LOGGING_AUDIT_TEXT "@NM_CONFIG_DEFAULT_LOGGING_AUDIT_TEXT@"> |