buildFHSUserEnv: change to root directory after chroot

Fixes #38525

Changed files
+1
pkgs
build-support
build-fhs-userenv
chrootenv
+1
pkgs/build-support/build-fhs-userenv/chrootenv/chrootenv.c
···
bind("/", prefix);
fail_if(chroot(prefix));
fail_if(execvp(*argv, argv));
}
···
bind("/", prefix);
fail_if(chroot(prefix));
+
fail_if(chdir("/"));
fail_if(execvp(*argv, argv));
}