mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 06:52:22 +03:00
3919ecc553
When a new page is added using man/update-man-rules, ninja doesn't know about the new target until a build is initiated, so build/man/man and build/man/html would fail. Force a trivial build to regenerate the rules before calling 'ninja -t'.
16 lines
329 B
Bash
Executable File
16 lines
329 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Use: $0 page-name (with no section suffix)"
|
|
exit 1
|
|
fi
|
|
|
|
# make sure the rules have been regenrated (in case man/update-man-rules was just run)
|
|
ninja -C "@BUILD_ROOT@" version.h
|
|
|
|
target="man/$1.html"
|
|
ninja -C "@BUILD_ROOT@" "$target"
|
|
set -x
|
|
exec xdg-open "@BUILD_ROOT@/$target"
|