diff options
author | dinoex <dinoex@FreeBSD.org> | 2006-12-04 01:59:09 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2006-12-04 01:59:09 +0800 |
commit | 418724d9b3ba3e21ef0e68c2b9c511f4148d7cd4 (patch) | |
tree | 177b99db514fabb834c379c7e9efc5cd9ee97f12 /Tools/portbuild | |
parent | 723d1d5357718277b026536f677eeeb187c81f11 (diff) | |
download | freebsd-ports-gnome-418724d9b3ba3e21ef0e68c2b9c511f4148d7cd4.tar.gz freebsd-ports-gnome-418724d9b3ba3e21ef0e68c2b9c511f4148d7cd4.tar.zst freebsd-ports-gnome-418724d9b3ba3e21ef0e68c2b9c511f4148d7cd4.zip |
- add check sysvipc
happens when security.jail.sysvipc_allowed=0
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/processonelog | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/processonelog b/Tools/portbuild/scripts/processonelog index d197309a6488..8f2719512935 100755 --- a/Tools/portbuild/scripts/processonelog +++ b/Tools/portbuild/scripts/processonelog @@ -267,6 +267,8 @@ elif bzgrep -q "/usr/bin/ld: cannot find -lXThrStub" $1; then reason="threads"; tag="threads" elif bzgrep -q "<varargs.h> is obsolete with this version of GCC" $1; then reason="varargs"; tag="varargs" +elif bzgrep -q "shminit failed: Permission denied" $1; then + reason="sysvipc"; tag="sysvipc" # Although these can be fairly common, and thus in one sense ought to be # earlier in the evaluation, in practice they are most often secondary |