Commit 9eec8037 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

configure: search Qt programs also in contrib dir

parent f6f88ca0
...@@ -3535,9 +3535,9 @@ AS_IF([test "${enable_qt}" != "no"], [ ...@@ -3535,9 +3535,9 @@ AS_IF([test "${enable_qt}" != "no"], [
]) ])
QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)" QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)"
AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, [${QT_PATH}/bin]) AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, [${QT_PATH}/bin ${CONTRIB_DIR}/bin])
AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin]) AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin ${CONTRIB_DIR}/bin])
AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, [${QT_PATH}/bin]) AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, [${QT_PATH}/bin ${CONTRIB_DIR}/bin])
]) ])
AM_CONDITIONAL(ENABLE_QT4, [test "$enable_qt" != "no"]) AM_CONDITIONAL(ENABLE_QT4, [test "$enable_qt" != "no"])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment