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 / +8 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
    # These options have already been tested, but if we ignore them
100
    # here they are caught by the else block and the program quits.
101
    if [ "$x" = "-debug" ] || [ "$x" = "-d" ] || \
102
       [ "$x" = "-nocolor" ] || [ "$x" = "-nc" ]; then
103
        # Empty block
104
        :
105
106
    elif [ "$x" = "-help" ] || [ "$x" = "-h" ]; then
100
        ayuda
107
        ayuda
101
        exit 0
108
        exit 0
102
109

Return to bug 491010