diff options
author | ryoon <ryoon@pkgsrc.org> | 2014-03-14 21:52:13 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2014-03-14 21:52:13 +0000 |
commit | bed95345509e482c09ea2cde553f40d693b32913 (patch) | |
tree | cca7ff017c4d1124823ddbd78de86908fc0efe37 | |
parent | c7dee1bf81dc4e4faad948fc2e45b203b0c07469 (diff) | |
download | pkgsrc-bed95345509e482c09ea2cde553f40d693b32913.tar.gz |
Add Xinuos SCO OpenServer 5.0.7/3.2 support
The license donation for OpenServer 5.0.7/3.2 by Xinuos Inc. helped to
make this commit possible.
-rwxr-xr-x | bootstrap/bootstrap | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index ce364d329ac..04a56fd66fd 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.203 2014/03/10 20:50:35 asau Exp $ +# $NetBSD: bootstrap,v 1.204 2014/03/14 21:52:13 ryoon Exp $ # # Copyright (c) 2001-2011 Alistair Crooks <agc@NetBSD.org> # All rights reserved. @@ -761,6 +761,17 @@ QNX) whoamiprog="id -un" machine_arch=`uname -p | sed -e 's/x86/i386/'` ;; +SCO_SV) + root_group=root + need_awk=yes + need_bsd_install=yes + need_sed=yes + set_opsys=no + whoamiprog='id -u' + groupsprog='id -g' + # /bin/sh under OpenServer 5.0.7/3.2 breaks bmake tests. + #bmakexargs="$bmakexargs --with-defshell=/bin/ksh" + ;; SunOS) root_group=root need_bsd_install=yes |