Changeset 6f0954b727fec5bcea9ac0483900e58fc51e3ddc
- 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
| rdde6aaf |
r6f0954b |
|
| 25 | 25 | # *************************************************************************** |
|---|
| 26 | 26 | |
|---|
| 27 | | if test "$#" -gt "2"; then |
|---|
| 28 | | echo "Usage: $0 <host> [distro]" >&2 |
|---|
| | 27 | if test "$#" -gt "2" -o $1 = "-h" -o $1 = "--help" ; then |
|---|
| | 28 | echo "Usage: $0 [host [distro]]" >&2 |
|---|
| 29 | 29 | echo " Prepare config.mak and distro.mak file." >&2 |
|---|
| 30 | 30 | exit 1 |
|---|
| … | … | |
| 37 | 37 | |
|---|
| 38 | 38 | BUILD=`gcc -dumpmachine` |
|---|
| 39 | | if test "$#" = "1"; then |
|---|
| | 39 | if test "$#" -ge "1"; then |
|---|
| 40 | 40 | HOST="$1" |
|---|
| 41 | 41 | else |
|---|