mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
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
|