1
1

Followup from Justin Bronder: Looks like I spoke too soon. The

sandbox team has informed me that they are getting rid of SANDBOX_PID
in the future and that using SANDBOX_ON would be preferred.

This commit was SVN r28708.
Этот коммит содержится в:
Jeff Squyres 2013-07-03 01:38:26 +00:00
родитель 81efd0e3cf
Коммит ad16bcd6d1

Просмотреть файл

@ -752,10 +752,10 @@ void opal_memory_linux_malloc_init_hook(void)
This is also an issue when using Gentoo's version of
'fakeroot', sandbox v2.5. Sandbox environments can also be
detected fairly easily by looking for SANDBOX_PID. */
detected fairly easily by looking for SANDBOX_ON. */
if (getenv("FAKEROOTKEY") != NULL ||
getenv("FAKED_MODE") != NULL ||
getenv("SANDBOX_PID") != NULL ) {
getenv("SANDBOX_ON") != NULL ) {
return;
}