GNU Binutils with patches for OS216
修订版 | 8199b8f4d45b2240d09142f1df70849dda2cc638 (tree) |
---|---|
时间 | 2018-06-15 07:38:32 |
作者 | Simon Marchi <simon.marchi@poly...> |
Commiter | Simon Marchi |
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.
@@ -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 | + | |
1 | 6 | 2018-06-14 Simon Marchi <simon.marchi@ericsson.com> |
2 | 7 | |
3 | 8 | * arch-utils.c (default_type_align): Use type_length_units. |
@@ -107,7 +107,8 @@ fi | ||
107 | 107 | # Verify that we have the correct version of autoconf. |
108 | 108 | ver=`autoconf --version 2>&1 | head -1 | sed 's/.*) //'` |
109 | 109 | 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." | |
111 | 112 | exit 1 |
112 | 113 | fi |
113 | 114 |
@@ -138,7 +139,8 @@ fi | ||
138 | 139 | # |
139 | 140 | ver=`aclocal --version 2>&1 | grep -v "called too early to check prototype" | head -1 | sed 's/.*) //'` |
140 | 141 | 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." | |
142 | 144 | exit 1 |
143 | 145 | fi |
144 | 146 |