On Wed, May 31, 2006 at 03:26:37PM +0200, Edwin Leuven wrote:
> exporting to latex (qt4/windows) gives:
> 
> \bibliography{/cygdrive/C/data/main}

I had already posted for three times a patch and I am attaching it
here for the fourth time.

Please, tell me if I should configure mutt to automatically attach
this patch to each mail until it gets applied (if you want to apply
it, I mean) ;-)

-- 
Enrico
Index: lib/configure.py
===================================================================
--- lib/configure.py    (revision 13864)
+++ lib/configure.py    (working copy)
@@ -81,7 +81,9 @@
 def checkCygwinPath(srcdir):
   ''' Adjust PATH for Win32 (Cygwin) '''
   cygwin_path_fix = ''
-  if sys.platform == 'cygwin':
+  if os.name == 'nt':
+    cygwin_path_fix = 'true'
+  elif sys.platform == 'cygwin':
     from tempfile import mkstemp
     fd, tmpfname = mkstemp(suffix='.ltx', dir='/tmp')
     os.write(fd, r'''

Reply via email to