mirror of https://github.com/kivy/kivy.git
setup.py: fix pango compilation that wasnt able to be cached because the depends where pointing on invalid files
This commit is contained in:
parent
6b4ebeeb82
commit
890f603b48
4
setup.py
4
setup.py
|
@ -856,10 +856,10 @@ if c_options['use_pangoft2'] in (None, True) and platform not in (
|
|||
if pango_flags and 'libraries' in pango_flags:
|
||||
print('Pango: pangoft2 found via pkg-config')
|
||||
c_options['use_pangoft2'] = True
|
||||
pango_depends = {'depends': ['lib/pangoft2.pxi',
|
||||
'lib/pangoft2.h']}
|
||||
pango_depends = {'depends': ['lib/pango/pangoft2.pxi']}
|
||||
sources['core/text/_text_pango.pyx'] = merge(
|
||||
base_flags, pango_flags, pango_depends)
|
||||
print(sources['core/text/_text_pango.pyx'])
|
||||
|
||||
if platform in ('darwin', 'ios'):
|
||||
# activate ImageIO provider for our core image
|
||||
|
|
Loading…
Reference in New Issue