Skip to content

Commit

Permalink
Merge pull request #3155 from matthew-brett/fix-freetype-version
Browse files Browse the repository at this point in the history
BUG : fix fetch of freetype version during build
  • Loading branch information
mdboom committed Jul 11, 2014
2 parents 75a4238 + f8f5ee0 commit 3b714b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setupext.py
Expand Up @@ -896,7 +896,7 @@ def check(self):
if sys.platform == 'win32':
return "Unknown version"

status, output = getstatusoutput("freetype-config --version")
status, output = getstatusoutput("freetype-config --ftversion")
if status == 0:
version = output
else:
Expand Down

0 comments on commit 3b714b8

Please sign in to comment.