1
1

Can't just use "0" in an AM_CONDITIONAL -- you have to use a valid

executable that can be run and returns a false exit status (which,
amusingly, in this case is 1, not 0).

This commit was SVN r27998.
Этот коммит содержится в:
Jeff Squyres 2013-01-31 20:30:30 +00:00
родитель 1b7c2b0ed1
Коммит da5d093fdc

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

@ -346,8 +346,8 @@ AC_DEFINE_UNQUOTED([OPAL_ENABLE_FT], [0],
[Enable fault tolerance general components and logic])
AC_DEFINE_UNQUOTED([OPAL_ENABLE_FT_CR], [0],
[Enable fault tolerance checkpoint/restart components and logic])
AM_CONDITIONAL(WANT_FT, 0)
AM_CONDITIONAL(WANT_FT_CR, 0)
AM_CONDITIONAL(WANT_FT, /bin/false)
AM_CONDITIONAL(WANT_FT_CR, /bin/false)
#
# Do we want to install binaries?