X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=bootstrap;h=e81ba4d02d0ad3fd5e203c335617b75886a8638d;hp=3b60fc6e5d1f5f2ce9a271ab679a331bdfd55690;hb=8457a1be10d1463b40c020867ad4dc2513c93a4b;hpb=ab90b8777855876f23c779ee2b25827a34f890c3 diff --git a/bootstrap b/bootstrap index 3b60fc6e5d..e81ba4d02d 100755 --- a/bootstrap +++ b/bootstrap @@ -24,11 +24,12 @@ fi # bootstrap the autotools ( set -x -aclocal +aclocal --warnings=all +# Apparently, not all versions of libtoolize support option --warnings=all . ${libtoolize} --automake --copy -autoconf -autoheader -automake --gnu --add-missing --copy +autoconf --warnings=all +autoheader --warnings=all +automake --warnings=all --gnu --add-missing --copy ) if [ -n "$SKIP_SUBMODULE" ]; then @@ -39,5 +40,12 @@ else git submodule update fi +if [ -x src/jtag/drivers/libjaylink/autogen.sh ]; then + ( + cd src/jtag/drivers/libjaylink + ./autogen.sh + ) +fi + echo "Bootstrap complete. Quick build instructions:" echo "./configure ...."