diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-07 12:53:58 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-07 12:53:58 -0700 |
commit | 2b5316265c5ce6c7dbd8f726826d5d5a7385febd (patch) | |
tree | d0603d97524973dfd95c5c70fcce0d309cb31206 /configure.ac | |
parent | 888aece87c0af4e0b326d4d92fcc079f249a7f73 (diff) |
configure: use @-style substitutions for man pages instead of __-style
Moves substitution of variables from Makefile.am to configure.ac
in preparation for allowing meson.build to do the same.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/app/appres/-/merge_requests/4>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 32c22d3..6de0b23 100644 --- a/configure.ac +++ b/configure.ac @@ -40,6 +40,9 @@ XORG_DEFAULT_OPTIONS # Checks for pkg-config packages PKG_CHECK_MODULES(APPRES, [x11 xt xproto >= 7.0.17]) +# Substitute config variables in man pages +AC_CONFIG_FILES([man/appres.1:man/appres.man]) + AC_CONFIG_FILES([ Makefile man/Makefile]) |