mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-28 22:20:28 +00:00
Dont try and preserve hard links to directories.
The linux kernel doesnt allow hard links to directories, SUS says its implementation specific. cramfs gives empty directories and 0 length files the same node it makies it difficult to distinguish from hard links.
This commit is contained in:
parent
c6a99b993d
commit
1219879422
@ -242,7 +242,9 @@ int copy_file(const char *source, const char *dest, int flags)
|
||||
}
|
||||
|
||||
#ifdef CONFIG_FEATURE_PRESERVE_HARDLINKS
|
||||
add_to_ino_dev_hashtable(&source_stat, dest);
|
||||
if (! S_ISDIR(source_stat.st_mode)) {
|
||||
add_to_ino_dev_hashtable(&source_stat, dest);
|
||||
}
|
||||
#endif
|
||||
|
||||
end:
|
||||
|
Loading…
Reference in New Issue
Block a user