Created attachment 215830 [details] fix -C option This have been implemented in https://github.com/freebsd/poudriere/pull/532, but one of the commits (https://github.com/freebsd/poudriere/pull/532/commits/33d6823387fc20480ff251adcc0bf7f3303c7ea8) was incorrect, and CLEANJAIL variable always equals 0. Mentioned commit changed CLEAN to CLEANJAIL in lines -1021,+1016, but -1079,+1074 done incorrectly: CLEAN=${CLEAN:-none} CLEANJAIL=${CLEAN:-none} Second should be: CLEANJAIL=${CLEANJAIL:-none} Or even better: : "${CLEANJAIL:=none}" I don't have a GitHub account, so attached patch that fixes ports tree itself.
Created attachment 215831 [details] fix -C option (full patch)
Build info is available at https://gitlab.com/swills/freebsd-ports/pipelines/163313309
Any updates on this?