summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-12-17 12:05:14 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2012-12-17 12:05:14 +0100
commit53b826e6aeeb3fb98e3f9b1ee82f2dd100202e1b (patch)
treeff2594b59e2b4ac2a725b56118c98ce1b7a53e56 /tools
parent827b2a9b0b2b938f458a7569bf6c73b6be25ddc7 (diff)
downloadandroid-node-v8-53b826e6aeeb3fb98e3f9b1ee82f2dd100202e1b.tar.gz
android-node-v8-53b826e6aeeb3fb98e3f9b1ee82f2dd100202e1b.tar.bz2
android-node-v8-53b826e6aeeb3fb98e3f9b1ee82f2dd100202e1b.zip
install: fix openbsd man page location
Man pages go into $PREFIX/man on OpenBSD, not $PREFIX/share/man.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install.py b/tools/install.py
index 78d0e5c14b..51b7911cc9 100755
--- a/tools/install.py
+++ b/tools/install.py
@@ -198,7 +198,7 @@ def files(action):
# with dtrace support now (oracle's "unbreakable" linux)
action(['src/node.d'], 'lib/dtrace/')
- if 'freebsd' in sys.platform:
+ if 'freebsd' in sys.platform or 'openbsd' in sys.platform:
action(['doc/node.1'], 'man/man1/')
else:
action(['doc/node.1'], 'share/man/man1/')