diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-11-19 13:00:17 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-11-26 11:00:15 -0800 |
commit | eb47cc29d45c86e5b1c4235fca7498811203d1b0 (patch) | |
tree | effc056cd58f5add3ad47ca1b6dfef17c6f76b7b /masterdb/Makefile.am | |
parent | cc540a018d2b05b30542b1f147d04fc80dd5b7e2 (diff) |
Add a meson build system
Includes CI checks comparing installed files based on those from xorgproto
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'masterdb/Makefile.am')
-rw-r--r-- | masterdb/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/masterdb/Makefile.am b/masterdb/Makefile.am index fd571b0..2154845 100644 --- a/masterdb/Makefile.am +++ b/masterdb/Makefile.am @@ -9,10 +9,10 @@ CLEANFILES = $(sgmldbs_DATA) %.html.xml: %.xml $(AM_V_GEN)$(SED) \ - -e 's|__db__|html|g' \ + -e 's|@db@|html|g' \ -e 's|@datarootdir[@]|$(datarootdir)|g' < $< > $@ %.pdf.xml: %.xml $(AM_V_GEN)$(SED) \ - -e 's|__db__|pdf|g' \ + -e 's|@db@|pdf|g' \ -e 's|@datarootdir[@]|$(datarootdir)|g' < $< > $@ |