Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/
Date: Sun, 30 Dec 2018 21:14:21
Message-Id: 1546204447.1c21dcc94ef9d60d9a655275dc0cf989ae8980ac.slyfox@gentoo
1 commit: 1c21dcc94ef9d60d9a655275dc0cf989ae8980ac
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 30 21:09:50 2018 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 30 21:14:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c21dcc9
7
8 sys-libs/glibc: fix live ebuild build failure, bug #674080
9
10 Fix by Bart Oldeman:
11
12 Stop touching C-translit.h, as it's now always automatically generated in the
13 build directory. Touching it creates a 0-byte file that causes missing symbols
14 when it's included instead of the generated file.
15
16 See here for the glibc change:
17 https://sourceware.org/git/?p=glibc.git;a=commit;h=053c52b17739a584ee73d336e547b15abcdabd49
18
19 Closes: https://bugs.gentoo.org/674080
20 Signed-off-by: Bart Oldeman <bartoldeman <AT> gmail.com>
21 Package-Manager: Portage-2.3.53, Repoman-2.3.12
22 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
23
24 sys-libs/glibc/glibc-9999.ebuild | 3 ---
25 1 file changed, 3 deletions(-)
26
27 diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild
28 index 46dde2c6ce3..ea9f2ab2563 100644
29 --- a/sys-libs/glibc/glibc-9999.ebuild
30 +++ b/sys-libs/glibc/glibc-9999.ebuild
31 @@ -731,9 +731,6 @@ src_unpack() {
32 unpack ${P}.tar.xz
33 fi
34
35 - cd "${S}" || die
36 - touch locale/C-translit.h || die #185476 #218003
37 -
38 cd "${WORKDIR}" || die
39 unpack glibc-${RELEASE_VER}-patches-${PATCH_VER}.tar.xz
40 }