From 266d1933ea31cfa083bd98b62bce53983f7032a8 Mon Sep 17 00:00:00 2001 From: Thomas Braun Date: Thu, 7 Apr 2011 14:21:53 +0200 Subject: [PATCH] Set autocrlf to false to preserve unix eol-style This makes it possible again to compile version 0.9.8k of openssl. Using windows eol-style results in a endless loop in openssl*/util/mkdef.pl line 880. Signed-off-by: Thomas Braun Signed-off-by: Erik Faye-Lund --- src/openssl/release.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openssl/release.sh b/src/openssl/release.sh index 8b382d07..ae164eaa 100644 --- a/src/openssl/release.sh +++ b/src/openssl/release.sh @@ -62,6 +62,7 @@ test -d $DIR || { mkdir $DIR && ( cd $DIR && git init && + git config core.autocrlf false && /git/contrib/fast-import/import-tars.perl ../$FILE ) } || die "Could not check out openssl" -- 2.11.4.GIT