mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
Signed-off-by: Alfredo Tupone <tupone@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
21 lines
927 B
Diff
21 lines
927 B
Diff
--- a/ada/testsuite/python_support/utils.py 2018-11-14 22:21:36.366873970 +0100
|
|
+++ b/ada/testsuite/python_support/utils.py 2018-11-14 22:21:59.397477086 +0100
|
|
@@ -28,6 +28,7 @@
|
|
library_kind = 'static' if LAL_DISABLE_SHARED else 'relocatable'
|
|
argv.extend([
|
|
'-XLIBRARY_TYPE={}'.format(library_kind),
|
|
+ '-XGPR_BUILD={}'.format(library_kind),
|
|
'-XXMLADA_BUILD={}'.format(library_kind),
|
|
])
|
|
subprocess.check_call(argv)
|
|
--- a/ada/testsuite/testsuite_support/base_driver.py 2018-11-14 22:22:37.698817058 +0100
|
|
+++ b/ada/testsuite/testsuite_support/base_driver.py 2018-11-14 22:30:37.631613448 +0100
|
|
@@ -310,6 +310,7 @@
|
|
"""
|
|
library_type = 'static' if self.disable_shared else 'relocatable'
|
|
return ['-XLIBRARY_TYPE={}'.format(library_type),
|
|
+ '-XGPR_BUILD={}'.format(library_type),
|
|
'-XXMLADA_BUILD={}'.format(library_type)]
|
|
|
|
#
|