diff options
author | Christopher Faylor <me@cgf.cx> | 2009-05-14 14:44:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2009-05-14 14:44:31 +0000 |
commit | ef5da523a94f878fbe95aac85eeb82d9a129ab6b (patch) | |
tree | 9de404e39eeb6582e6f0b692dde22b239791e581 /winsup/cygwin | |
parent | e8d534d51a1ed088a9b2508884ab5bd56c142a80 (diff) | |
download | newlib-ef5da523a94f878fbe95aac85eeb82d9a129ab6b.zip newlib-ef5da523a94f878fbe95aac85eeb82d9a129ab6b.tar.gz newlib-ef5da523a94f878fbe95aac85eeb82d9a129ab6b.tar.bz2 |
* mount.cc (mount_info::init): Remove MOUNT_CYGWIN_EXEC setting when
auto-mounting /usr/bin.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/mount.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 3efda4c..bf8e9ed 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2009-05-14 Christopher Faylor <me+cygwin@cgf.cx> + + * mount.cc (mount_info::init): Remove MOUNT_CYGWIN_EXEC setting when + auto-mounting /usr/bin. + 2009-05-14 Corinna Vinschen <corinna@vinschen.de> * mount.cc (oopts): Add a no-op "auto" option. diff --git a/winsup/cygwin/mount.cc b/winsup/cygwin/mount.cc index 4c2199c..43177eb 100644 --- a/winsup/cygwin/mount.cc +++ b/winsup/cygwin/mount.cc @@ -342,7 +342,7 @@ mount_info::init () { stpcpy (p, "\\bin"); mount_table->add_item (native, "/usr/bin", - MOUNT_SYSTEM | MOUNT_BINARY | MOUNT_AUTOMATIC | MOUNT_CYGWIN_EXEC); + MOUNT_SYSTEM | MOUNT_BINARY | MOUNT_AUTOMATIC); } if (!got_usr_lib) { |