From: Martin Mares Date: Sat, 21 Apr 2012 10:53:07 +0000 (+0200) Subject: Isolate: Put /lib64 to the box X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=bb8d26d74aed8b520980faa236f25606332558e7;p=eval.git Isolate: Put /lib64 to the box --- diff --git a/isolate/isolate.c b/isolate/isolate.c index 15b0648..2550aba 100644 --- a/isolate/isolate.c +++ b/isolate/isolate.c @@ -767,7 +767,7 @@ setup_root(void) if (mount("none", "root", "tmpfs", 0, "mode=755") < 0) die("Cannot mount root ramdisk: %m"); - static const char * const dirs[] = { "box", "/bin", "/lib", "/usr", "/dev" }; + static const char * const dirs[] = { "box", "/bin", "/lib", "/lib64", "/usr", "/dev" }; for (int i=0; i < ARRAY_SIZE(dirs); i++) { const char *d = dirs[i];