Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: /
Date: Mon, 16 Sep 2019 21:31:39
Message-Id: 1568669339.8952a5286dd67de883700cb238b225849d7b1aa9.whissi@gentoo
1 commit: 8952a5286dd67de883700cb238b225849d7b1aa9
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 16 21:28:59 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 16 21:28:59 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=8952a528
7
8 gen_funcs.sh: Add tc-getBUILD_CXX() function
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 gen_funcs.sh | 4 ++++
13 1 file changed, 4 insertions(+)
14
15 diff --git a/gen_funcs.sh b/gen_funcs.sh
16 index f835220..9e7d573 100755
17 --- a/gen_funcs.sh
18 +++ b/gen_funcs.sh
19 @@ -1096,6 +1096,10 @@ tc-getBUILD_CC() {
20 tc-getBUILD_PROG CC gcc "$@"
21 }
22
23 +tc-getBUILD_CXX() {
24 + tc-getBUILD_PROG CXX g++ "$@"
25 +}
26 +
27 tc-getCC() {
28 tc-getPROG CC gcc "$@"
29 }