aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorR. Diez <rdiezmail-openocd@yahoo.de>2020-04-30 16:31:26 +0200
committerTomas Vanek <vanekt@fbl.cz>2020-07-30 12:26:24 +0100
commit583a65644b5b69f5c197322b09a577b3c90ca781 (patch)
tree0854ad89f1a1a1bf2554fa254253899153c155b7 /bootstrap
parentfb739651c79722b4bc57c31b3d26bb48840b9118 (diff)
downloadriscv-openocd-583a65644b5b69f5c197322b09a577b3c90ca781.zip
riscv-openocd-583a65644b5b69f5c197322b09a577b3c90ca781.tar.gz
riscv-openocd-583a65644b5b69f5c197322b09a577b3c90ca781.tar.bz2
Make autotools warnings visible.
Change-Id: Ibcdac7100faca7a66d9b3440431e74a8a8c5f042 Signed-off-by: R. Diez <rdiezmail-openocd@yahoo.de> Reviewed-on: http://openocd.zylin.com/5639 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap9
1 files changed, 5 insertions, 4 deletions
diff --git a/bootstrap b/bootstrap
index ad5e7bd..e81ba4d 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