updated installation to use pip for core_python, added a pip check to configure.ac

This commit is contained in:
Blake J. Harnden 2017-08-08 11:29:01 -07:00
parent 67d451c3e9
commit eb5dd3780c
2 changed files with 7 additions and 2 deletions

View file

@ -147,6 +147,11 @@ if test "x$enable_daemon" = "xyes" ; then
AC_CHECK_PROG(ovs_of_path, ovs-ofctl, $as_dir, no, $SEARCHPATH)
fi
AC_CHECK_PROG(pip_installed, pip, yes, no, $SEARCHPATH)
if test "x$pip_installed" = "xno" ; then
AC_MSG_ERROR([Could not locate pip. Please install python-pip.])
fi
#AC_CHECK_PROG(dia, dia, yes, no)
AC_CHECK_PROG(help2man, help2man, yes, no, $SEARCHPATH)
if test "x$convert" = "xno" ; then