Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 18 Sep 2019 07:09:12
Message-Id: 1568790532.cea1a6b71819800630abacd686497056e8b25c56.tupone@gentoo
1 commit: cea1a6b71819800630abacd686497056e8b25c56
2 Author: Tupone Alfredo <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 18 07:07:58 2019 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 18 07:08:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea1a6b7
7
8 ada.eclass: add export of GNATBIND GNATLS GNATMAKE
9
10 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
11
12 eclass/ada.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/ada.eclass b/eclass/ada.eclass
16 index 763ce92056e..dad3d9acce8 100644
17 --- a/eclass/ada.eclass
18 +++ b/eclass/ada.eclass
19 @@ -411,7 +411,7 @@ ada_setup() {
20 if [[ ${#_ADA_SUPPORTED_IMPLS[@]} -eq 1 ]]; then
21 if use "ada_target_${_ADA_SUPPORTED_IMPLS[0]}"; then
22 # Only one supported implementation, enable it explicitly
23 - ada_export "${_ADA_SUPPORTED_IMPLS[0]}" EADA GCC_PV GNAT
24 + ada_export "${_ADA_SUPPORTED_IMPLS[0]}" EADA GCC_PV GNAT GNATBIND GNATLS GNATMAKE
25 ada_wrapper_setup
26 fi
27 else
28 @@ -427,7 +427,7 @@ ada_setup() {
29 die "More than one implementation in ADA_TARGET."
30 fi
31
32 - ada_export "${impl}" EADA GCC_PV GNAT
33 + ada_export "${impl}" EADA GCC_PV GNAT GNATBIND GNATLS GNATMAKE
34 ada_wrapper_setup
35 fi
36 done