From: Chris Dickens Date: Tue, 18 Aug 2020 16:28:27 +0000 (-0700) Subject: Autotools: Use built-in shell tests and exec autoreconf X-Git-Tag: upstream/1.0.24~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee089f2e658472e0b0881064a366236ce9fa38be;p=platform%2Fupstream%2Flibusb.git Autotools: Use built-in shell tests and exec autoreconf Signed-off-by: Chris Dickens --- diff --git a/autogen.sh b/autogen.sh index 24f39ee..62d68e5 100755 --- a/autogen.sh +++ b/autogen.sh @@ -3,6 +3,6 @@ set -e ./bootstrap.sh -if test -z "$NOCONFIGURE"; then +if [ -z "$NOCONFIGURE" ]; then exec ./configure --enable-examples-build --enable-tests-build "$@" fi diff --git a/bootstrap.sh b/bootstrap.sh index dc56539..cfd2b45 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,6 +1,8 @@ #!/bin/sh -if ! test -d m4 ; then +set -e + +if [ ! -d m4 ]; then mkdir m4 fi -autoreconf -ivf || exit 1 +exec autoreconf -ivf diff --git a/libusb/version_nano.h b/libusb/version_nano.h index dfaf221..3951592 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11538 +#define LIBUSB_NANO 11539