Change in vdsm[master]: configure.ac: hard-require python3

danken at redhat.com danken at redhat.com
Sun Mar 27 07:14:09 UTC 2016


Dan Kenigsberg has uploaded a new change for review.

Change subject: configure.ac: hard-require python3
......................................................................

configure.ac: hard-require python3

commit f247a0c made python3 a hard build requirement. configure.ac
must reflect that.

Change-Id: If71abbe56eafc47eaf5f80dc0bed8032b294e0a7
Signed-off-by: Dan Kenigsberg <danken at redhat.com>
---
M configure.ac
1 file changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/84/55284/1

diff --git a/configure.ac b/configure.ac
index 472a4c7..3307507 100644
--- a/configure.ac
+++ b/configure.ac
@@ -247,12 +247,12 @@
 
 AC_PATH_PROG([PYTHON3], [python3])
 if test "x$PYTHON3" = "x"; then
-  AC_MSG_WARN([python3 not found])
-else
-  AC_PATH_PROG([PYTHON3_NOSE], [nosetests-3.4])
-  if test "x$PYTHON3_NOSE" = "x"; then
-    AC_MSG_WARN([python3-nose not found])
-  fi
+  AC_MSG_ERROR([python3 not found])
+fi
+
+AC_PATH_PROG([PYTHON3_NOSE], [nosetests-3.4])
+if test "x$PYTHON3_NOSE" = "x"; then
+  AC_MSG_ERROR([python3-nose not found])
 fi
 
 # Checking for python-devel


-- 
To view, visit https://gerrit.ovirt.org/55284
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If71abbe56eafc47eaf5f80dc0bed8032b294e0a7
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Dan Kenigsberg <danken at redhat.com>


More information about the vdsm-patches mailing list