]> git.proxmox.com Git - mirror_edk2.git/commit
CryptoPkg/OpensslLib: Fix CRLF breakage in process_files.sh
authorDavid Woodhouse <David.Woodhouse@intel.com>
Sat, 5 Mar 2016 16:44:33 +0000 (16:44 +0000)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Sat, 5 Mar 2016 16:48:21 +0000 (16:48 +0000)
commit9353c60cea6eeedbbe4b336aea02646e2bf25f47
treefbd4aa7cc424ffcb447c2af315e575ebadc96227
parentf9496167549701f31968fea3b52c05c32689f7b9
CryptoPkg/OpensslLib: Fix CRLF breakage in process_files.sh

This got broken in committing, due to a catalogue of broken practices.

Firstly, we should *pull* git submissions, never recommit them. You
preserve the correct history then, and don't risk rebasing to result in
a history which *never* worked in the form that gets preserved.

That would have kept the authorship attrbution correct too.

Secondly, we shouldn't be storing CRLF line endings in the objects that
git stores in its database. It is designed to store simple LF line endings,
and then check that out as appropriate for the system (resulting in CRLF
in the working tree for Windows users, as they expect). That would avoid
this problem, and all the other problems we have with patches being
exchanged.

Make it executable too, which also got lost in the commit mess.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
CryptoPkg/Library/OpensslLib/process_files.sh [changed mode: 0644->0755]