1
1

opal_check_libfabric: correctly check for user intent

If the user asked for libfabric and we can't build for it, abort.

Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
Этот коммит содержится в:
Jeff Squyres 2016-03-28 08:31:42 -07:00
родитель 1baed498b6
Коммит ccdc10dda3

Просмотреть файл

@ -88,7 +88,7 @@ AC_DEFUN([OPAL_CHECK_LIBFABRIC],[
AS_IF([test $opal_check_libfabric_happy = yes],
[$2],
[AS_IF([test "$opal_want_libfabric" = "yes"],
[AS_IF([test -n "$with_libfabric" && test "$with_libfabric" != "no"],
[AC_MSG_WARN([libfabric support requested (via --with-libfabric), but not found.])
AC_MSG_ERROR([Cannot continue.])])
$3])