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
This commit is contained in:
Germán Franco 2016-10-27 19:36:35 +02:00
parent d624f27208
commit 0f617ec5a2
2 changed files with 3 additions and 1 deletions

2
.gitattributes vendored Executable file
View File

@ -0,0 +1,2 @@
# Auto-LF line endings for this file, CRLF will cause errors
autogen.sh text eol=lf

View File

@ -7,4 +7,4 @@ if test -z "${NOCONFIGURE}"; then
set -x set -x
./configure --prefix=/usr "$@" ./configure --prefix=/usr "$@"
make clean make clean
fi fi