From 53b826e6aeeb3fb98e3f9b1ee82f2dd100202e1b Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 17 Dec 2012 12:05:14 +0100 Subject: [PATCH] install: fix openbsd man page location Man pages go into $PREFIX/man on OpenBSD, not $PREFIX/share/man. --- tools/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install.py b/tools/install.py index 78d0e5c..51b7911 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/') -- 2.7.4