Date: Sat, 20 Jun 2020 21:50:57 +0000 From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 247448] [patch] ports-mgmt/poudriere: jail -d -C never worked Message-ID: <bug-247448-7788@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247448 Bug ID: 247448 Summary: [patch] ports-mgmt/poudriere: jail -d -C never worked Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: bdrewery@FreeBSD.org Reporter: vsasjason@gmail.com Assignee: bdrewery@FreeBSD.org Flags: maintainer-feedback?(bdrewery@FreeBSD.org) Created attachment 215830 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D215830&action= =3Dedit 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/33d6823387fc20480ff2= 51adcc0bf7f3303c7ea8) was incorrect, and CLEANJAIL variable always equals 0. Mentioned commit changed CLEAN to CLEANJAIL in lines -1021,+1016, but -1079,+1074 done incorrectly: CLEAN=3D${CLEAN:-none} CLEANJAIL=3D${CLEAN:-none} Second should be: CLEANJAIL=3D${CLEANJAIL:-none} Or even better: : "${CLEANJAIL:=3Dnone}" I don't have a GitHub account, so attached patch that fixes ports tree itse= lf. --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-247448-7788>