mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-21 18:57:14 +01:00
checking for qmake-qt4
This commit is contained in:
parent
b802d25c37
commit
799b1268a3
12
configure.in
12
configure.in
@ -52,11 +52,17 @@ EXTENDED_PATH="/usr/local/bin:$PATH"
|
||||
AC_ARG_WITH(qmake, [ --with-qmake=qmake Specify the qmake to be used (debian qmake-qt4) ])
|
||||
if test -n "$with_qmake"; then
|
||||
AC_PATH_PROG(QMAKE, $with_qmake, ,[$EXTENDED_PATH])
|
||||
if test -z "$QMAKE"; then
|
||||
AC_MSG_ERROR("Could not find qmake")
|
||||
fi
|
||||
else
|
||||
AC_PATH_PROG(QMAKE, qmake, ,[$EXTENDED_PATH])
|
||||
fi
|
||||
if test -z "$QMAKE"; then
|
||||
AC_MSG_ERROR("Could not find qmake")
|
||||
if test -z "$QMAKE"; then
|
||||
AC_PATH_PROG(QMAKE, qmake-qt4, ,[$EXTENDED_PATH])
|
||||
if test -z "$QMAKE"; then
|
||||
AC_MSG_ERROR("Could not find qmake")
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING(checking version of QT this qmake is part of)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user