support: remove confusing (and uncessary) default values.
This commit is contained in:
parent
ddc466c1bf
commit
babe15958e
1 changed files with 4 additions and 4 deletions
|
@ -175,12 +175,12 @@ function show_help
|
|||
val=${opt#*:}
|
||||
opt=${opt%:*}
|
||||
if [ "$val" == "yes" ]; then
|
||||
printf " $fmt Disable ${opt} [${val}]\n" "--disable-${opt}"
|
||||
printf " $fmt Disable ${opt}\n" "--disable-${opt}"
|
||||
elif [ "$val" == "no" ]; then
|
||||
printf " $fmt Enable ${opt} [${val}]\n" "--enable-${opt}"
|
||||
printf " $fmt Enable ${opt}\n" "--enable-${opt}"
|
||||
else
|
||||
printf " $fmt Disable ${opt} [${val}]\n" "--disable-${opt}"
|
||||
printf " $fmt Enable ${opt} [${val}]\n" "--enable-${opt}"
|
||||
printf " $fmt Disable ${opt}\n" "--disable-${opt}"
|
||||
printf " $fmt Enable ${opt}\n" "--enable-${opt}"
|
||||
fi
|
||||
done
|
||||
exit 0
|
||||
|
|
Loading…
Add table
Reference in a new issue