paper-icon-theme/autogen.sh
Germán Franco 0f617ec5a2 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
2016-10-27 20:07:48 +02:00

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