Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 3403 - configure options for app-arch/dump are wrong
Summary: configure options for app-arch/dump are wrong
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Seemant Kulleen (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-06-05 01:44 UTC by Shane Hyde
Modified: 2003-02-04 19:42 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 Shane Hyde 2002-06-05 01:44:02 UTC
If you try to use dump with the -u option, it will not be able to update the 
dumpdates file becuase it has been incorrectly set to /etc in dump-
0.4.28.ebuild .

---------------------------------
src_compile() {
    local myconf
    ./configure --prefix=/usr \
        --with-dumpdatespath=/etc \
---------------------------------
This should be
---------------------------------
src_compile() {
    local myconf
    ./configure --prefix=/usr \
        --with-dumpdatespath=/etc/dumpdates \
---------------------------------
Comment 1 Seemant Kulleen (RETIRED) gentoo-dev 2002-06-05 03:18:12 UTC
Thanks for catching this.  While I was in there, I made readline an optional
dependency as well (involved some sed'ing to replace references to -ltermcap
with -lncurses instead :)