9 lines
140 B
Bash
9 lines
140 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
./bootstrap.sh
|
||
|
if test -z "$NOCONFIGURE"; then
|
||
|
exec ./configure --enable-examples-build --enable-tests-build "$@"
|
||
|
fi
|