android13/external/igt-gpu-tools/man/rst2man.sh

18 lines
359 B
Bash
Raw Normal View History

2024-06-22 08:45:49 -04:00
#!/bin/bash
rst2man=$1
input=$2
output=$3
out_dir=$(dirname "${output}")
in_file=$(basename "${input}")
# rst2man doesn't handle multiple source directories well, and since defs.rst is
# generated we first need to move it all into the build dir
cp "$input" "$out_dir"
${rst2man} "$out_dir/$in_file" "${output%.gz}"
rm -f "${output}"
gzip "${output%.gz}"