Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 491010 | Differences between
and this patch

Collapse All | Expand All

(-)localepurge/localepurge.ori (-1 / +9 lines)
Lines 96-102 Link Here
96
96
97
for x in $@; do
97
for x in $@; do
98
98
99
    if [ "$x" = "-help" ] || [ "$x" = "-h" ]; then
99
    # This options are already tested.
100
    # But if we ignore them here, they are catched by the else block.
101
    # Then the program quits.
102
    if [ "$x" = "-debug" ] || [ "$x" = "-d" ] || \
103
       [ "$x" = "-nocolor" ] || [ "$x" = "-nc" ]; then
104
        # Empty block
105
        :
106
107
    elif [ "$x" = "-help" ] || [ "$x" = "-h" ]; then
100
        ayuda
108
        ayuda
101
        exit 0
109
        exit 0
102
110

Return to bug 491010