Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 22633 - net-mail/courier - wrong behaviour
Summary: net-mail/courier - wrong behaviour
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal
Assignee: Nick Hadaway
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-06-11 13:06 UTC by Andrey Ulanov
Modified: 2003-06-14 10:35 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrey Ulanov 2003-06-11 13:06:25 UTC
fix:

-        if use nls && [ ! -z "$ENABLE_UNICODE" ]; then
+        if use nls && [ -z "$ENABLE_UNICODE" ]; then
                myconf="${myconf} --enable-unicode"
        elif use nls; then
                myconf="${myconf} --enable-unicode=$ENABLE_UNICODE"
        else
                myconf="${myconf} --disable-unicode"
        fi
Comment 1 Brian Jackson (RETIRED) gentoo-dev 2003-06-11 15:24:12 UTC
looks good to me I'll add it after all my other changes get committed(and maybe after I get cvs 
access depending on how long the first one takes) 
Comment 2 Nick Hadaway 2003-06-14 10:35:11 UTC
This is the new code snippet...

#
        # 1. If nls is enabled and ENABLE_UNICODE is not empty...
        #    enable the specified unicode sets
        # 2. If nls is enabled and no unicode sets are specified,
        #    enable them all
        # 3. If nls is disabled, disable unicode sets
        #
        if use nls && [ ! -z "$ENABLE_UNICODE" ]; then
                myconf="${myconf} --enable-unicode=$ENABLE_UNICODE"
        elif use nls; then
                myconf="${myconf} --enable-unicode"
        else
                myconf="${myconf} --disable-unicode"
        fi