diff options
author | Daniel Micay <danielmicay@gmail.com> | 2014-05-07 21:58:54 (GMT) |
---|---|---|
committer | Daniel Micay <danielmicay@gmail.com> | 2014-05-07 22:48:39 (GMT) |
commit | 74b1ea5ce09c8455f35da0fbbd41f678708151d8 (patch) | |
tree | 00298382a1fbfdaa652e75598a9cfcfe020c563b | |
parent | a344dd01c74a7e385087819046105f689931905d (diff) | |
download | jemalloc-74b1ea5ce09c8455f35da0fbbd41f678708151d8.zip jemalloc-74b1ea5ce09c8455f35da0fbbd41f678708151d8.tar.gz jemalloc-74b1ea5ce09c8455f35da0fbbd41f678708151d8.tar.bz2 |
fix git handling of newlines on windows
By default, git will coerce LF to CRLF when files are checked out on
Windows. This causes hard to diagnose errors when compiling with
mingw-w64 from Windows rather than cross-compiling.
-rw-r--r-- | .gitattributes | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6313b56 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf |