mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-10 01:17:44 +03:00
cb713f1696
Most of them were reported by Fossies.org
16 lines
330 B
Bash
Executable File
16 lines
330 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 regenerated (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"
|