Skip to content

Commit

Permalink
setup.py: fix pango compilation that wasnt able to be cached because …
Browse files Browse the repository at this point in the history
…the depends where pointing on invalid files
  • Loading branch information
tito committed Mar 4, 2019
1 parent 6b4ebee commit 890f603
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -856,10 +856,10 @@ def determine_sdl2():
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
Expand Down

0 comments on commit 890f603

Please sign in to comment.