diff m4/ax_python_numpy.m4 @ 109:bd6215fa1d87

* ax_python_numpy.m4: Make trivially compatible with Python 3
author Mike Miller <mtmiller@octave.org>
date Sun, 20 Sep 2015 01:37:18 +0200
parents f8e9d39ef81b
children 3af7523b395a
line wrap: on
line diff
--- a/m4/ax_python_numpy.m4	Fri Sep 18 00:00:09 2015 -0400
+++ b/m4/ax_python_numpy.m4	Sun Sep 20 01:37:18 2015 +0200
@@ -53,7 +53,7 @@
 		NUMPY_INCLUDEDIR=`$PYTHON -c '
 try:
 	from numpy import get_include
-	print get_include()
+	print(get_include())
 except:
 	pass
 '`