Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Olena
olena
Commits
e547b432
Commit
e547b432
authored
Dec 27, 2019
by
Robert Sachunsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use python3 print function instead of python2 print statement
parent
b40632da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
m4/pypath.m4
m4/pypath.m4
+1
-1
No files found.
m4/pypath.m4
View file @
e547b432
...
...
@@ -2,5 +2,5 @@ AC_DEFUN([adl_CHECK_PYTHON],
[AM_PATH_PYTHON([2.0])
AC_CACHE_CHECK([for $am_display_PYTHON includes directory],
[adl_cv_python_inc],
[adl_cv_python_inc=`$PYTHON -c "from distutils import sysconfig;
print
sysconfig.get_python_inc()" 2>/dev/null`])
[adl_cv_python_inc=`$PYTHON -c "from distutils import sysconfig;
import sys; sys.stdout.write(
sysconfig.get_python_inc()
)
" 2>/dev/null`])
AC_SUBST([PYTHONINC], [$adl_cv_python_inc])])
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment