Skip to content
Snippets Groups Projects
Unverified Commit fc48f65a authored by Adam J. Stewart's avatar Adam J. Stewart Committed by GitHub
Browse files

Fix libxml2+python and libxslt+python import tests (#10196)

* Fix libxml2+python import tests

* Same for libxslt package
parent 58079b13
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,8 @@ class Libxml2(AutotoolsPackage): ...@@ -26,7 +26,8 @@ class Libxml2(AutotoolsPackage):
depends_on('zlib') depends_on('zlib')
depends_on('xz') depends_on('xz')
extends('python+shared', when='+python', depends_on('python+shared', when='+python')
extends('python', when='+python',
ignore=r'(bin.*$)|(include.*$)|(share.*$)|(lib/libxml2.*$)|' ignore=r'(bin.*$)|(include.*$)|(share.*$)|(lib/libxml2.*$)|'
'(lib/xml2.*$)|(lib/cmake.*$)') '(lib/xml2.*$)|(lib/cmake.*$)')
......
...@@ -32,7 +32,8 @@ class Libxslt(AutotoolsPackage): ...@@ -32,7 +32,8 @@ class Libxslt(AutotoolsPackage):
depends_on('zlib') depends_on('zlib')
depends_on('libgcrypt', when='+crypto') depends_on('libgcrypt', when='+crypto')
extends('python+shared', when='+python') depends_on('python+shared', when='+python')
extends('python', when='+python')
def configure_args(self): def configure_args(self):
args = [] args = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment