From ac421a6f2c5b20ec436841fa2612e58883206969 Mon Sep 17 00:00:00 2001 From: "Bastian M. Wojek" Date: Sat, 27 Aug 2011 11:27:56 +0000 Subject: [PATCH] Small fix to get the editor installation directory correctly --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index f861d5e2..dfad3f2a 100644 --- a/configure.ac +++ b/configure.ac @@ -1038,9 +1038,9 @@ if test "x$enable_editor" != "xno" && test "x$QMAKEBIN" != "x"; then echo "Configuring ${QTEDITOR} ..." - echo "Calling ${QMAKEBIN} ${QTEDITOR}.pro within the directory src/${QTEDITOR}" + echo "Calling ${QMAKEBIN} PREFIX=${INSTALLDIR} ${QTEDITOR}.pro within the directory src/${QTEDITOR}" cd src/${QTEDITOR} - ${QMAKEBIN} ${QTEDITOR}.pro + ${QMAKEBIN} PREFIX=${INSTALLDIR} ${QTEDITOR}.pro cd ../.. fi