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