mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 12:58:16 -07:00
Closes: https://bugs.gentoo.org/799290 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: David Seifert <soap@gentoo.org>
15 lines
546 B
Diff
15 lines
546 B
Diff
--- a/test_pkgconfig.py
|
|
+++ b/test_pkgconfig.py
|
|
@@ -138,9 +138,9 @@
|
|
def test_configure_extension():
|
|
ext = Extension('foo', ['foo.c'])
|
|
pkgconfig.configure_extension(ext, 'fake-gtk+-3.0 fake-python')
|
|
- assert ext.extra_compile_args == [
|
|
+ assert sorted(ext.extra_compile_args) == [
|
|
'-DGSEAL_ENABLE', '-I/usr/include/gtk-3.0','-I/usr/include/python2.7']
|
|
- assert ext.extra_link_args == [
|
|
+ assert sorted(ext.extra_link_args) == [
|
|
'-L/usr/lib_gtk_foo', '-L/usr/lib_python_foo', '-lgtk-3', '-lpython2.7']
|
|
|
|
|