From 140671df98b702afb33a25fe37d705f2e0f21dcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=C3=B6hler?= Date: Fri, 16 Feb 2007 23:55:12 +0000 Subject: [PATCH] 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 --- packaging/win32/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/win32/install.sh b/packaging/win32/install.sh index 87975d61f1..e3c7133112 100644 --- a/packaging/win32/install.sh +++ b/packaging/win32/install.sh @@ -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" \