[Bug ada/63222] Ada.Directories.Delete_File refuses to delete dangling symlinks

2015-12-06 Thread ebotcazou at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63222 Eric Botcazou changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug ada/63222] Ada.Directories.Delete_File refuses to delete dangling symlinks

2015-07-22 Thread pavel at zhukoff dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63222 Pavel Zhukov changed: What|Removed |Added CC||pavel at zhukoff dot net --- Comment #1 f

[Bug ada/63222] Ada.Directories.Delete_File refuses to delete dangling symlinks

2015-07-22 Thread pavel at zhukoff dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63222 --- Comment #2 from Pavel Zhukov --- If symlink is broken Ada.Directories.Exists returns False (actually it's because stat64 returns ENOENT in __gnat_stat). Easy to reproduce: mkdir 'test' && cd 'test' && touch target && ln -s target link && rm