mirror of
https://github.com/RPCS3/libusb.git
synced 2024-11-27 04:00:57 +00:00
da27298d21
Signed-off-by: Nathan Hjelm <hjelmn@me.com>
9 lines
140 B
Bash
Executable File
9 lines
140 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
./bootstrap.sh
|
|
if test -z "$NOCONFIGURE"; then
|
|
exec ./configure --enable-examples-build --enable-tests-build "$@"
|
|
fi
|