Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 263877 - gnome-extra/libgda-3.0.4 have spelling mistake in configuration
Summary: gnome-extra/libgda-3.0.4 have spelling mistake in configuration
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-03-26 16:53 UTC by Maciej Piechotka
Modified: 2009-05-31 21:14 UTC (History)
0 users

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 Maciej Piechotka 2009-03-26 16:53:03 UTC
if use bindist; then
                # firebird license is not GPL compatible
                G2CONF="${G2CONR} --without-firebird"
        else
                G2CONF="${G2CONR} $(use_with firebird firebird /usr)"
        fi

should be

        if use bindist; then
                # firebird license is not GPL compatible
                G2CONF="${G2CONF} --without-firebird"
        else
                G2CONF="${G2CONF} $(use_with firebird firebird /usr)"
        fi

I.e ${G2CONF} - not ${G2CONR}

Reproducible: Always
Comment 1 Gilles Dartiguelongue (RETIRED) gentoo-dev 2009-03-26 18:22:30 UTC
indeed
Comment 2 Gilles Dartiguelongue (RETIRED) gentoo-dev 2009-05-31 21:14:16 UTC
fixed without a bump. Thanks for reporting.