diff options
Diffstat (limited to 'moz-normalize-mozconfig')
-rwxr-xr-x | moz-normalize-mozconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/moz-normalize-mozconfig b/moz-normalize-mozconfig index 92a848d..07a427e 100755 --- a/moz-normalize-mozconfig +++ b/moz-normalize-mozconfig @@ -10,7 +10,7 @@ urlencode() { # class-id:line classify-lines() { while read line; do - _line="$(printf '%s' "$line"|sed -r 's/^#(\S)/\1/')" + _line="$(printf '%s' "$line"|sed -r -e 's/^#(\S)/\1/' -e 's/ #.*//')" class='other' case "$_line" in ac_add_options\ --enable-application=*) class=setapp;; |