Hi,

Eric Kow <[email protected]> writes:
> 3. Work on darcs 2.4.2 resolving the Windows issue specifically
at this point, it is a matter of bumping h-s dependency to 0.4.12.

I have (semi-accidentally) tracked this bug down to yet another lstat
screwup in GHC. On win32, System.Posix.Internals.lstat just gives random
data. The index size and existence is derived from this random data and
that explains both symptoms that have been observed.

I now use:

#if mingw32_HOST_OS
lstat = c_stat
#else
import System.Posix.Internals( lstat )
#endif

Yours,
   Petr.
_______________________________________________
darcs-users mailing list
[email protected]
http://lists.osuosl.org/mailman/listinfo/darcs-users

Reply via email to