Changeset 1fd6a94503a42e517cc2bbcb194391d6e7052939

Show
Ignore:
Timestamp:
09/13/07 23:25:01 (10 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1189718701 +0000
git-parent:

[3c80258576da980b4ac67012b2ebc48f73994910]

git-author:
Rafaël Carré <funman@videolan.org> 1189718701 +0000
Message:

bootstrap: print a success message
unify errors on missing/too old tools
remove insulting and not used variables

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bootstrap

    r38e8690 r1fd6a94  
    2929## Check for various tools 
    3030## 
    31 AUTOMAKESUCKS=no 
    32 INSTALLSUCKS=no 
    3331 
    3432ACLOCAL_ARGS="-I m4 ${ACLOCAL_ARGS}" 
     
    6563case "$(autoconf --version|head -n 1)" in 
    6664  *2.5[012345678]*) 
    67     echo "Hey, your autoconf is quite old. Update it." >&2 
     65    echo "$0: you need autoconf version 2.59 or later (2.60 recommanded)." 
    6866    exit 1 
    6967    ;; 
     
    7169  *2.59*) 
    7270    echo "Enabling provisional autoconf 2.59 work-around. Update autoconf ASAP." 
     71    echo "Press Enter to continue" 
     72    read 
    7373    cp -f extras/m4/autoconf260.m4 m4/ 
    7474    ;; 
     
    128128fi;else 
    129129  set +x 
    130   echo "you need gettextize (package gettext-devel or gettext)" 
     130  echo "$0: you need gettextize (package gettext-devel or gettext)" 
    131131  exit 1 
    132132fi 
     
    272272fi 
    273273 
     274echo "Successfully bootstrapped"