From: Christopher Faylor Date: Thu, 20 Apr 2000 20:42:32 +0000 (+0000) Subject: * setup.c (main): Umount /bin and /lib. X-Git-Tag: cygwin-1_1_1~25 X-Git-Url: https://cygwin.com/git/?a=commitdiff_plain;h=1f772104e23cc9e20d2d1318c4f2a4ac575b6285;p=cygwin-apps%2Fsetup.git * setup.c (main): Umount /bin and /lib. --- diff --git a/setup.c b/setup.c index 4535bf24..d2e4b90d 100644 --- a/setup.c +++ b/setup.c @@ -1217,7 +1217,9 @@ those as the basis for your installation.\n\n" xumount (wd, "/usr"); xumount (wd, "/var"); - + xumount (wd, "/lib"); + xumount (wd, "/bin"); + /* Make /bin point to /usr/bin and /lib point to /usr/lib. */ mkmount (wd, root, "bin", "/usr/bin", 1); mkmount (wd, root, "lib", "/usr/lib", 1);