toolchain/glibc: update to latest 2.26 commit
7b52c8ae05 libio: Avoid _allocate_buffer, _free_buffer function pointers [BZ #23236] Refresh patches Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
This commit is contained in:
parent
31f35be016
commit
c22117a791
3 changed files with 4 additions and 4 deletions
|
@ -11,8 +11,8 @@ PKG_VERSION:=2.26
|
||||||
|
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||||
PKG_SOURCE_VERSION:=4df8479e6b3baf365bd4eedbba922b73471e5d73
|
PKG_SOURCE_VERSION:=7b52c8ae05340c795654d23a0e7a2590a3e23bd2
|
||||||
PKG_MIRROR_HASH:=8c9cb826cf5ec94c827b4edce7e6f809cb560d3164a43f01280e5469896b4717
|
PKG_MIRROR_HASH:=f60f1a1dbb8f339d18ff36eb11b6e04cab853711919c71487b9e0604bbc16c10
|
||||||
PKG_SOURCE_URL:=https://sourceware.org/git/glibc.git
|
PKG_SOURCE_URL:=https://sourceware.org/git/glibc.git
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
+++ b/sunrpc/rpc_main.c
|
+++ b/sunrpc/rpc_main.c
|
||||||
@@ -958,9 +958,10 @@ mkfile_output (struct commandline *cmd)
|
@@ -958,9 +958,10 @@ mkfile_output (struct commandline *cmd)
|
||||||
abort ();
|
abort ();
|
||||||
temp = rindex (cmd->infile, '.');
|
temp = strrchr (cmd->infile, '.');
|
||||||
cp = stpcpy (mkfilename, "Makefile.");
|
cp = stpcpy (mkfilename, "Makefile.");
|
||||||
- if (temp != NULL)
|
- if (temp != NULL)
|
||||||
- *((char *) stpncpy (cp, cmd->infile, temp - cmd->infile)) = '\0';
|
- *((char *) stpncpy (cp, cmd->infile, temp - cmd->infile)) = '\0';
|
||||||
|
|
|
@ -2,7 +2,7 @@ add /usr/lib to default search path for the dynamic linker
|
||||||
|
|
||||||
--- a/Makeconfig
|
--- a/Makeconfig
|
||||||
+++ b/Makeconfig
|
+++ b/Makeconfig
|
||||||
@@ -571,6 +571,9 @@ else
|
@@ -578,6 +578,9 @@ else
|
||||||
default-rpath = $(libdir)
|
default-rpath = $(libdir)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue