mirror of
https://github.com/shadps4-emu/ext-libusb.git
synced 2026-01-31 00:55:21 +01:00
See http://people.gnome.org/~walters/docs/build-api.txt Hdg: I know this may seem unnecessary since we also have bootstrap.sh, but the Gnome people are doing continues build testing of Gnome + dependencies and having all autogen.sh scripts support NOCONFIGURE=1 makes live easier for them. Note that in return we get "free" continues build-testing and patches and / or a heads up when we break things. Signed-off-by: Hans de Goede <hdegoede@redhat.com>
9 lines
165 B
Bash
Executable File
9 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
./bootstrap.sh
|
|
if test -z "$NOCONFIGURE"; then
|
|
exec ./configure --enable-maintainer-mode --enable-examples-build --enable-tests-build "$@"
|
|
fi
|