[Ecls-list] build.vc8 files in mac format
Dean O'Connor
dean.oconnor at ite.com.au
Tue Feb 13 08:08:39 UTC 2007
well the TortoiseCVS guys have throw the ball back.
Bug report:
https://sourceforge.net/tracker/?func=detail&atid=451972&aid=1657632&group_id=48103
Cause/Solution:http://tortoisecvs.org/faq.shtml#brokenlineendings
It does make sense because when I check out those problem files in linux
they do have CR-LF instead of just LF.
So it does seems as tho some repo files are corrupt (perhaps too strong
a word) with improper CR-LF's caused from checking-in with a non-CVSNT
Windows client.
I wrote a quick bash script (well 2) to find all the files with CR-LF's
in them. I couldn't get grep to do it, so this may seem like a strange
way, but it works I think.
I have attached a list of files with CR-LF's in them (sorry no zip -
sourceforge are blocking them). There's 110 of them.
I didn't verify everyone last one of them, but they matches with the
ones I had problems with and random samples all had CR-LF's.
FYI, my scripts are below, just run findall.
cheers deano.
findall.sh
======
#!/bin/bash
find * -type f | xargs -i ./find.sh {} {}
find.sh
====
#!/bin/bash
if hexdump -C $1 | grep -qs "0d 0a" ; then
echo $1
fi
exit 0
Juan Jose Garcia-Ripoll wrote:
> 2007/2/12, Dean O'Connor <dean.oconnor at ite.com.au>:
>
>> Yes, it certainly seems to be a TortoiseCVS problem at least on my x64
>> machine. [...]
>> May I ask what Windows (x32/x64?) and TortoiseCVS version you tried ?
>>
>
> Actually, I had the same problem with TortoiseCVS "stable" on a XP
> Home with 32 bits. The machine, though, is a Core 2 Duo, so it
> definitely has 64 bit registers available, but I doubt one can use
> them under Windows, may one?
>
> Are there any other CVS clients around, other than cygwin/mingw32?
> Would it make sense to make nightly CVS snapshots, then? This could be
> another reason to provide a continously updated mirror using
> mercurial, though.
>
> Cheers,
>
> Juanjo
>
>
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: files-crlf.txt
URL: <https://mailman.common-lisp.net/pipermail/ecl-devel/attachments/20070213/4cef9c78/attachment.txt>
More information about the ecl-devel
mailing list