8000 Merge pull request #3155 from matthew-brett/fix-freetype-version · matplotlib/matplotlib@3b714b8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3b714b8

Browse files
committed
Merge pull request #3155 from matthew-brett/fix-freetype-version
BUG : fix fetch of freetype version during build
2 parents 75a4238 + f8f5ee0 commit 3b714b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ def check(self):
896896
if sys.platform == 'win32':
897897
return "Unknown version"
898898

899-
status, output = getstatusoutput("freetype-config --version")
899+
status, output = getstatusoutput("freetype-config --ftversion")
900900
if status == 0:
901901
version = output
902902
else:

0 commit comments

Comments
 (0)
0