Mercurial > mplayer.hg
changeset 1384:5665219136ce
Applied patch by pl <p_l@tfz.net> (help switch anywhere).
author | atmos4 |
---|---|
date | Tue, 24 Jul 2001 09:16:53 +0000 |
parents | d15d60e12bd3 |
children | 493cbec56a14 |
files | configure |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Mon Jul 23 21:19:52 2001 +0000 +++ b/configure Tue Jul 24 09:16:53 2001 +0000 @@ -108,7 +108,8 @@ # LGB: Help moved here. -if [ "$1" = "--help" -o "$1" = "-help" -o "$1" = "-h" ]; then +for parm in "$@" ; do +if [ "$parm" = "--help" -o "$parm" = "-help" -o "$parm" = "-h" ]; then cat << EOF usage: $0 [options] @@ -178,6 +179,7 @@ EOF exit 0 fi +done # for parm in ... # LGB: Some inital help