Skip to content

Commit 1f12534

Browse files
sunpoetmarco-ippolito
authored andcommitted
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 <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent 4b8b92f commit 1f12534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/install.py

Lines changed: 1 addition & 1 deletion
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)