From: Zbigniew Jędrzejewski-Szmek Date: Tue, 4 Jun 2019 15:33:59 +0000 (+0200) Subject: man/man: refer to the right build directory in the helpers X-Git-Tag: v243-rc1~315^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4fb334113bc2a71d75eaabeb3f81c98e5aaddc75;p=thirdparty%2Fsystemd.git man/man: refer to the right build directory in the helpers I have no idea how this one slipped through. --- diff --git a/man/html.in b/man/html.in index d4debcc3400..bc9a668c23f 100755 --- a/man/html.in +++ b/man/html.in @@ -9,4 +9,4 @@ fi target="man/$1.html" ninja -C "@BUILD_ROOT@" "$target" set -x -exec xdg-open build/"$target" +exec xdg-open "@BUILD_ROOT@/$target" diff --git a/man/man.in b/man/man.in index ab1c1fdc73f..75680b860c7 100755 --- a/man/man.in +++ b/man/man.in @@ -13,4 +13,4 @@ if [ -z "$target" ]; then exit 1 fi ninja -C "@BUILD_ROOT@" "$target" -exec man build/"$target" +exec man "@BUILD_ROOT@/$target"