archive.cc: ignore more posix_fallocate "not supported" error codes
Fixes w/musl.
This commit is contained in:
parent
ad6dbecc1d
commit
0963479741
|
@ -331,7 +331,7 @@ struct RestoreSink : ParseSink
|
|||
filesystem doesn't support preallocation (e.g. on
|
||||
OpenSolaris). Since preallocation is just an
|
||||
optimisation, ignore it. */
|
||||
if (errno && errno != EINVAL)
|
||||
if (errno && errno != EINVAL && errno != EOPNOTSUPP && errno != ENOSYS)
|
||||
throw SysError(format("preallocating file of %1% bytes") % len);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue