Skip to content

Commit

Permalink
Fix #4449 to make it compile again in Arch Linux
Browse files Browse the repository at this point in the history
The configure.ac file should refer to the same python-config as the
boost.m4 macro.
  • Loading branch information
codereader committed Dec 27, 2016
1 parent 462a95a commit 794104b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -136,7 +136,7 @@ BOOST_TEST
# Boost.Python if required
if test "$python_scripting" = 'yes'
then
AC_CHECK_PROGS([PYTHON_CONFIG], [python2-config], [])
AC_CHECK_PROGS([PYTHON_CONFIG], [python-config], [])
if test ! -z "$PYTHON_CONFIG"
then
PYTHON_LIBS=`$PYTHON_CONFIG --libs`
Expand Down

0 comments on commit 794104b

Please sign in to comment.