Changeset 6f0954b727fec5bcea9ac0483900e58fc51e3ddc

Show
Ignore:
Timestamp:
14/05/07 14:25:18 (2 years ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1179145518 +0000
git-parent:

[e54cc504833e241107edd85a568338e6c3fbdccf]

git-author:
Christophe Mutricy <xtophe@videolan.org> 1179145518 +0000
Message:

More exact documentation and small fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/contrib/bootstrap

    rdde6aaf r6f0954b  
    2525# *************************************************************************** 
    2626 
    27 if test "$#" -gt "2"; then 
    28   echo "Usage: $0 <host> [distro]" >&2 
     27if test "$#" -gt "2" -o $1 = "-h" -o $1 = "--help" ; then 
     28  echo "Usage: $0 [host [distro]]" >&2 
    2929  echo "  Prepare config.mak and distro.mak file." >&2 
    3030  exit 1 
     
    3737 
    3838BUILD=`gcc -dumpmachine` 
    39 if test "$#" = "1"; then 
     39if test "$#" -ge "1"; then 
    4040  HOST="$1" 
    4141else