Install.sh: Make QTDIR a Unix path.

AqBankings configure does not like QTDIR to contain backslashes.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15586 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler
2007-02-16 23:55:12 +00:00
parent 5d8c124c3c
commit 140671df98

View File

@@ -730,7 +730,8 @@ function inst_qt4() {
# already useful in itself and that's why it has already been
# added.
_QTDIR=`unix_path ${QTDIR}`
export QTDIR=`unix_path ${QTDIR}` # help configure of aqbanking
_QTDIR=$QTDIR
# This section creates .la files for the Qt-4 DLLs so that
# libtool correctly links to the DLLs.
if test ! -f ${_QTDIR}/lib/libQtCore4.la ; then
@@ -768,7 +769,6 @@ function inst_aqbanking() {
_AQ_LDFLAGS="-L${_LIBOFX_UDIR}/lib ${KTOBLZCHECK_LDFLAGS}"
if test x$aqbanking_with_qt = xyes; then
inst_qt4
_QTDIR=`unix_path ${QTDIR}`
./configure \
--with-gwen-dir=${_GWENHYWFAR_UDIR} \
--with-frontends="cbanking qbanking" \