mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-12-25 21:59:30 +01:00
Fix a syntax error
This commit is contained in:
parent
9235c9fd68
commit
0e34f37e02
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ dnl We biuld either with Qt4 or Qt5, but not both
|
|||
if test "${qt5_ok}" = "1" && "${qt4_ok}" = "1"; then
|
||||
AC_MSG_ERROR([Please deactivate Qt4 explicitly if you want to build with Qt5])
|
||||
fi
|
||||
AM_CONDITIONAL([BUILD_QT], [test "${qt4_ok}" = "1" || "${qt5_ok}" = "1" ])
|
||||
AM_CONDITIONAL([BUILD_QT], [test "${qt4_ok}" = "1" -o "${qt5_ok}" = "1" ])
|
||||
|
||||
dnl Enable/disable text version
|
||||
AC_ARG_ENABLE([text],AS_HELP_STRING([--enable-text],[text interface support (default enabled)]))
|
||||
|
|
Loading…
Reference in a new issue