diff options
author | Rasmus Villemoes <rasmus.villemoes@prevas.dk> | 2018-06-12 17:00:43 +0200 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2018-06-12 09:00:43 -0600 |
commit | 764d9a51e65865ad531e70abf1fff4926b591746 (patch) | |
tree | ecd2b8313b45e93223e5dff1ce035beaa0d41add /fixincludes/genfixes | |
parent | c649ee40c37020bd836a6f91c5b4853bb8a6a07c (diff) | |
download | gcc-764d9a51e65865ad531e70abf1fff4926b591746.zip gcc-764d9a51e65865ad531e70abf1fff4926b591746.tar.gz gcc-764d9a51e65865ad531e70abf1fff4926b591746.tar.bz2 |
genfixes: exit 1 when autogen not found.
* genfixes: exit 1 when autogen not found.
* genfixes: Remove some redundant code.
* genfixes: Update URL to autogen source code.
From-SVN: r261500
Diffstat (limited to 'fixincludes/genfixes')
-rwxr-xr-x | fixincludes/genfixes | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/fixincludes/genfixes b/fixincludes/genfixes index f0fc5e6..47aad01 100755 --- a/fixincludes/genfixes +++ b/fixincludes/genfixes @@ -55,19 +55,16 @@ do esac done -if [ $# -eq 0 ] ; then - set -- fixincl.x -fi - AG="autogen $AG" set -e if [ -z "`${AG} -v | fgrep ' 5.'`" ] then echo "AutoGen appears to be out of date or not correctly installed." - echo "Please download and install:" - echo " ftp://gcc.gnu.org/pub/gcc/infrastructure/autogen.tar.gz" + echo "Please download and install from:" + echo " https://ftp.gnu.org/gnu/autogen/" touch fixincl.x + exit 1 else echo AutoGen-ing fixincl.x $AG inclhack.def |