| Summary: | editors/vim A failure has been detected in another branch of the parallel make | ||
|---|---|---|---|
| Product: | Ports & Packages | Reporter: | rpazo |
| Component: | Individual Port(s) | Assignee: | Adam Weinberger <adamw> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | Flags: | bugzilla:
maintainer-feedback?
(adamw) |
| Priority: | --- | ||
| Version: | Latest | ||
| Hardware: | amd64 | ||
| OS: | Any | ||
|
Description
rpazo
2016-10-04 20:31:58 UTC
After r423078, there shouldn't be any parallel jobs. Can you give some more info? Which version of FreeBSD, which branch are you on, what's in your /etc/make.conf, etc? Sure thing. I am using ccache BTW FreeBSD: 10.3-RELEASE-p7 Arch: amd64 /usr/ports/editors/vim # cat distinfo TIMESTAMP = 1475511481 SHA256 (vim-vim-v8.0.0021_GH0.tar.gz) = 2442386694b620694ae79709a4fa15a8260fd095dfdca673b1ea2db3e2153800 SIZE (vim-vim-v8.0.0021_GH0.tar.gz) = 12928873 # cat /etc/make.conf DEFAULT_VERSIONS+=ssl=openssl .if !(make(*install) || make(package)) MAKE_ARGS+=-j5 .endif CC=clang CXX=clang++ CPP=clang-cpp WRKDIRPREFIX=/ram CCACHE_DIR=/var/tmp/ccache > .if !(make(*install) || make(package))
> MAKE_ARGS+=-j5
> .endif
That's where the problem is. It's overriding the MAKE_JOBS_UNSAFE.
Try replacing that block with just:
MAKE_JOBS_NUMBER= 5
Let me know if that fixes it for you.
That did the trick. Thanks! Glad to hear it. Have a good one. |