@kugel- commented on this pull request.
+# actually constant, just match autconf
+pcconf.set('exec_prefix', '${prefix}') +pcconf.set('datadir', '${datarootdir}') +pcconf.set('localedir', join_paths('${datarootdir}', 'locale')) + +# needed programs +sh = find_program('sh') +cp = find_program('cp') +ln = find_program('ln') +python = find_program('python3') +# These two are truly optional +rst2html = find_program('rst2html', required: false) +rst2pdf = find_program('rst2pdf', required: false) +git = find_program('git', required: false) +if git.found() + ret = run_command(git, 'rev-parse', '--short', '--revs-only', 'HEAD', check: false)
fixed