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
11 lines
171 B
Bash
Executable File
11 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
autoreconf --force --install --symlink --warnings=all
|
|
|
|
if test -z "${NOCONFIGURE}"; then
|
|
set -x
|
|
./configure --prefix=/usr "$@"
|
|
make clean
|
|
fi
|