Re: cygwin-1.7.13-1: mknod console c 5 1 creates invalid device

2012-04-20 Thread Ladislav Michl
Dne 19.4.2012 19:21, Christopher Faylor napsal(a): Funny you should pick up on that. I actually had a sheet over my head with two eyes cut out when I was writing the ChangeLog. This should be fixed in the next snapshot. Just checked cygwin1-20120419.dll.bz2 and it fixes this problem. Thanks,

cygwin-1.7.13-1: mknod console c 5 1 creates invalid device

2012-04-19 Thread Ladislav Michl
Using cygwin-1.7.11-1 cygwin1.dll mknod works as expected $ cd /tmp/ $ mknod ccc c 5 1 $ ls -l ccc crw-rw-rw- 1 Ladis None 5, 1 Apr 19 13:47 ccc However with cygwin-1.7.13-1 I get: c?? ? ? ? ?? ccc $ ls -l ccc ls: cannot access ccc: No such device or address

(cd $P && pwd) fails for path >255 chars

2010-10-07 Thread Ladislav Michl
Hi, while building Cygwin hosted toolchain build was mysteriously failing with 'No such file or directory'. Here's a test case: P=/tmp for i in 1 2 3 4 5 6 7 8 do P=$P/this_is_somewhat_very_long_path done mkdir -p $P (cd $P && pwd) pwd outputs just '.', but once editing loop to end at 7th iter