0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-02-22 15:47:26 +00:00
Tee KOBAYASHI 5c73c3f40f binutils: Overhaul
* Rename main package to binutils-libs

* Install executables into libexec/binutils/

* Create subpackage binutils-bin not conflicting with binutils-is-llvm

  - binutils-bin contains symlinks bin/{as,elfedit,gprof,ld.bfd}

* Make binutils essentially a metapackage only containing symlinks
2022-11-12 13:28:39 +00:00

12 lines
481 B
Diff

--- ../cache/binutils-2.30/gold/dirsearch.cc 2018-01-13 13:31:16.000000000 +0000
+++ ./gold/dirsearch.cc 2018-07-04 01:41:01.695893401 +0000
@@ -69,7 +69,7 @@
{
// We ignore directories which do not exist or are actually file
// names.
- if (errno != ENOENT && errno != ENOTDIR)
+ if (errno != ENOENT && errno != ENOTDIR && errno != EACCES )
gold::gold_error(_("%s: can not read directory: %s"),
this->dirname_, strerror(errno));
return;