diff options
author | christos <christos@pkgsrc.org> | 2012-05-15 16:42:43 +0000 |
---|---|---|
committer | christos <christos@pkgsrc.org> | 2012-05-15 16:42:43 +0000 |
commit | a7d0be3325d9c940c49420bf43de0d306f53a908 (patch) | |
tree | 2b91a8d0b8ab54e6da63cb05e8a3e08fa71bd9cf /bootstrap | |
parent | b26e5d74bf83d0a1a757a7bec8555d55cbfc7c7e (diff) | |
download | pkgsrc-a7d0be3325d9c940c49420bf43de0d306f53a908.tar.gz |
Don't enforce vulnerability tests during bootstrap. On old systems eg.
NetBSD-3, the checker command line syntax was different leading to failure
to install.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index 7ba8f63ac62..c46267ee9d3 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.174 2012/01/11 01:15:17 riz Exp $ +# $NetBSD: bootstrap,v 1.175 2012/05/15 16:42:43 christos Exp $ # # Copyright (c) 2001-2011 Alistair Crooks <agc@NetBSD.org> # All rights reserved. @@ -39,6 +39,10 @@ BOOTSTRAP_VERSION=20060721 MAKECONF=/dev/null export MAKECONF +# No vulnerability checks since there might be an incompatible checker installed +NO_PKGTOOLS_REQD_CHECK=yes +export NO_PKGTOOLS_REQD_CHECK + unprivileged=no preserve_path=no |