diff options
author | Rob Austein <sra@hactrn.net> | 2015-07-20 09:40:31 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-07-20 09:40:31 +0000 |
commit | ae2c17efd1d81fb3a78164f6954987251aa09200 (patch) | |
tree | 67309eacc574fba824e3be0ff094501e8dce0585 /buildtools/build-freebsd-ports.py | |
parent | 14b094c2ad6ca3731615b1e43febd8fb6d4856f6 (diff) |
Disable dependency checking while building port skeletons.
svn path=/trunk/; revision=6076
Diffstat (limited to 'buildtools/build-freebsd-ports.py')
-rw-r--r-- | buildtools/build-freebsd-ports.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buildtools/build-freebsd-ports.py b/buildtools/build-freebsd-ports.py index c422f02f..fc35c94b 100644 --- a/buildtools/build-freebsd-ports.py +++ b/buildtools/build-freebsd-ports.py @@ -112,7 +112,8 @@ for port in ("rpki-rp", "rpki-ca"): with open(fn, "w") as f: f.write(template % formatdict) - subprocess.check_call(("make", "makesum", "stage", "DISTDIR=" + portsdir), cwd = base) + subprocess.check_call(("make", "makesum", "stage", "DISTDIR=" + portsdir, "NO_DEPENDS=yes"), + cwd = base) with open(os.path.join(base, "pkg-plist"), "w") as f: usr_local = None |