• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Révision8199b8f4d45b2240d09142f1df70849dda2cc638 (tree)
l'heure2018-06-15 07:38:32
AuteurSimon Marchi <simon.marchi@poly...>
CommiterSimon Marchi

Message de Log

update-gnulib.sh: Report required versions of autoconf/aclocal

Update the messages printed when the wrong version of autoconf/aclocal
is found to include the expected version too, like we already do for
automake.

gdb/ChangeLog:

* gnulib/update-gnulib.sh: Print expected versions of
autoconf/aclocal.

Change Summary

Modification

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
1+2018-06-14 Simon Marchi <simon.marchi@polymtl.ca>
2+
3+ * gnulib/update-gnulib.sh: Print expected versions of
4+ autoconf/aclocal.
5+
16 2018-06-14 Simon Marchi <simon.marchi@ericsson.com>
27
38 * arch-utils.c (default_type_align): Use type_length_units.
--- a/gdb/gnulib/update-gnulib.sh
+++ b/gdb/gnulib/update-gnulib.sh
@@ -107,7 +107,8 @@ fi
107107 # Verify that we have the correct version of autoconf.
108108 ver=`autoconf --version 2>&1 | head -1 | sed 's/.*) //'`
109109 if [ "$ver" != "$AUTOCONF_VERSION" ]; then
110- echo "Error: Wrong autoconf version: $ver. Aborting."
110+ echo "Error: Wrong autoconf version ($ver), we need $AUTOCONF_VERSION."
111+ echo "Aborting."
111112 exit 1
112113 fi
113114
@@ -138,7 +139,8 @@ fi
138139 #
139140 ver=`aclocal --version 2>&1 | grep -v "called too early to check prototype" | head -1 | sed 's/.*) //'`
140141 if [ "$ver" != "$ACLOCAL_VERSION" ]; then
141- echo "Error: Wrong aclocal version: $ver. Aborting."
142+ echo "Error: Wrong aclocal version ($ver), we need $ACLOCAL_VERSION."
143+ echo "Aborting."
142144 exit 1
143145 fi
144146