8000 BUG : fix fetch of freetype version during build · matplotlib/matplotlib@f8f5ee0 · GitHub
[go: up one dir, main page]

Skip to content

Commit f8f5ee0

Browse files
committed
BUG : fix fetch of freetype version during build
Use freetype-config --ftversion flag to get freetype version (previously using freetype-config --version which returns libtool version).
1 parent b0dc1d5 commit f8f5ee0

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