From 0f617ec5a27b8d8d9aa50c57dd38f35ae49dc35d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Franco?= Date: Thu, 27 Oct 2016 19:36:35 +0200 Subject: [PATCH] Fix autogen.sh, fixes #425 Fixes a build error because of line endings character recognized as a syntax error in bash. Also added it to .gitattributes so that it will be converted to LF if anyone pushes it as CRLF --- .gitattributes | 2 ++ autogen.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100755 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100755 index 00000000..5be9ced5 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto-LF line endings for this file, CRLF will cause errors +autogen.sh text eol=lf diff --git a/autogen.sh b/autogen.sh index dd7b88bf..88eec8be 100755 --- a/autogen.sh +++ b/autogen.sh @@ -7,4 +7,4 @@ if test -z "${NOCONFIGURE}"; then set -x ./configure --prefix=/usr "$@" make clean -fi \ No newline at end of file +fi