Sanity Test Failure |
Mon, 9 Jul 2018
|
[ 08:40 mat ] (Only the first 10 of 429 ports in this commit are shown above. )
Remove all := from BUILD_DEPENDS, here are never needed.
While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight
|
Sanity Test Results
www/p5-WebService-CIA:
This command (FreshPorts code 1):
/usr/local/bin/sudo /usr/sbin/chroot -u freshports
/var/db/freshports/ports-jail /make-port.sh /var/db/repos/PORTS-head
www/p5-WebService-CIA
2>/tmp/FreshPorts.www.p5-WebService-CIA.make-error.2018.7.9.8.45.11.12410
produced this error:
Error message is: Variable BUILD_DEPENDS is recursive.
Make results are :
make: stopped in /var/db/repos/PORTS-head/www/p5-WebService-CIA
|