Skip to content

Commit dab85bd

Browse files
authored
tools: install manpage to share/man for FreeBSD
FreeBSD now install manpages to share/man/ instead of man/. Refs: https://cgit.freebsd.org/ports/commit/?id=003a571d1d6585196545295efc181514f171c4c4 Refs: https://cgit.freebsd.org/ports/commit/?id=99ea45a72a2800fc90e98ee225a42c3e88da8602 Refs: https://cgit.freebsd.org/ports/commit/?id=94cb251581ce0b94a40dee0728884367c3a4a82d PR-URL: #51791 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Richard Lau <rlau@redhat.com>
1 parent cde37e7 commit dab85bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def files(options, action):
182182
action(options, [os.path.join(options.v8_dir, 'tools/gdbinit')], 'share/doc/node/')
183183
action(options, [os.path.join(options.v8_dir, 'tools/lldb_commands.py')], 'share/doc/node/')
184184

185-
if 'freebsd' in sys.platform or 'openbsd' in sys.platform:
185+
if 'openbsd' in sys.platform:
186186
action(options, ['doc/node.1'], 'man/man1/')
187187
else:
188188
action(options, ['doc/node.1'], 'share/man/man1/')

0 commit comments

Comments
 (0)