r15586 - gnucash/trunk/packaging/win32 - Install.sh: Make QTDIR a Unix path.

Andreas Köhler andi5 at cvs.gnucash.org
Fri Feb 16 18:55:18 EST 2007


Author: andi5
Date: 2007-02-16 18:55:12 -0500 (Fri, 16 Feb 2007)
New Revision: 15586
Trac: http://svn.gnucash.org/trac/changeset/15586

Modified:
   gnucash/trunk/packaging/win32/install.sh
Log:
Install.sh: Make QTDIR a Unix path.

AqBankings configure does not like QTDIR to contain backslashes.


Modified: gnucash/trunk/packaging/win32/install.sh
===================================================================
--- gnucash/trunk/packaging/win32/install.sh	2007-02-16 22:57:15 UTC (rev 15585)
+++ gnucash/trunk/packaging/win32/install.sh	2007-02-16 23:55:12 UTC (rev 15586)
@@ -730,7 +730,8 @@
     # 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 @@
 	    _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" \



More information about the gnucash-changes mailing list