From c7362f3904a47b8ce8eea601ffdc2128a230a67a Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Sat, 28 Nov 2020 14:34:10 +0100 Subject: [PATCH] fix #6: JAIL environment variable inside build chroot leads to rc misbehavior, since it thinks it runs inside a jail, but isn't. --- jaildk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jaildk b/jaildk index 654510b..da67b67 100644 --- a/jaildk +++ b/jaildk @@ -864,7 +864,7 @@ jaildk_blogin() { fi chroot $chroot /etc/rc.d/ldconfig onestart > /dev/null 2>&1 - env - JAIL=$jail HOME=$home TERM=$term SHELL=$shell PATH=$path chroot $chroot $shell + env - HOME=$home TERM=$term SHELL=$shell PATH=$path chroot $chroot $shell } jaildk_login() {