manpages-check (628B)
1 #!/bin/sh 2 3 find build/ -regex ".*\.[1-9]$" -exec grep -E \ 4 @vendorversion@\|\ 5 @xorgversion@\|\ 6 @xservername@\|\ 7 @xconfigfile@\|\ 8 @projectroot@\|\ 9 @apploaddir@\|\ 10 @appmansuffix@\|\ 11 @drivermansuffix@\|\ 12 @adminmansuffix@\|\ 13 @libmansuffix@\|\ 14 @miscmansuffix@\|\ 15 @filemansuffix@\|\ 16 @logdir@\|\ 17 @datadir@\|\ 18 @mandir@\|\ 19 @sysconfdir@\|\ 20 @xconfigdir@\|\ 21 @xkbdir@\|\ 22 @XKB_DFLT_RULES@\|\ 23 @XKB_DFLT_MODEL@\|\ 24 @XKB_DFLT_LAYOUT@\|\ 25 @XKB_DFLT_VARIANT@\|\ 26 @XKB_DFLT_OPTIONS@\|\ 27 @bundle_id_prefix@\|\ 28 @modulepath@\|\ 29 @suid_wrapper_dir@\|\ 30 @default_font_path@\ 31 '{}' + && { echo "Missing manpage substitutions detected!" >&2 ; exit 1; } 32 33 exit 0