2015-04-28 17:08:15 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-12-08 18:36:53 -05:00
|
|
|
set -e
|
2018-02-22 21:30:48 +00:00
|
|
|
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
|
|
test -n "$srcdir" || srcdir=.
|
|
|
|
|
|
|
|
olddir=`pwd`
|
|
|
|
cd "$srcdir"
|
|
|
|
|
2015-12-08 18:36:53 -05:00
|
|
|
autoreconf --force --install --symlink --warnings=all
|
|
|
|
|
|
|
|
if test -z "${NOCONFIGURE}"; then
|
|
|
|
set -x
|
|
|
|
./configure --prefix=/usr "$@"
|
|
|
|
make clean
|
2016-10-27 19:36:35 +02:00
|
|
|
fi
|
2018-02-22 21:30:48 +00:00
|
|
|
|
|
|
|
cd "$olddir"
|