Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 43427 - Descent 3 emerge fails due to non-existant directory
Summary: Descent 3 emerge fails due to non-existant directory
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Games (show other bugs)
Hardware: x86 Linux
: Low normal (vote)
Assignee: Gentoo Games
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-03-01 16:38 UTC by Edward Styles
Modified: 2004-03-19 13:17 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 Edward Styles 2004-03-01 16:38:07 UTC
Well... the descent 3 emerge fails every time because of this... just thought someone might want to make descent3-1.4.0b-r1.ebuild

The problem is that the ebuild tries to create subdirectories in a directory which hasn't been created yet. Nothing too severe, took me 0.74 seconds to fix.

Just thought I'd give a tiny bit back to gentoo... and prevent other people from becoming slightly annoyed at this.

in section src_unpack...
......
src_unpack() {
        mkdir ${S}/{a,b}
        cd ${S}/a
        unpack_makeself ${PN}-1.4.0a-x86.run
        cd ${S}/b
        unpack_makeself ${P}-x86.run
}
......

should have:

......
        mkdir ${S}
......
at the top of it




thanks :P
Comment 1 SpanKY gentoo-dev 2004-03-19 13:08:11 UTC
mkdir -p ${S}/{a,b}
would be easier
Comment 2 Chris Gianelloni (RETIRED) gentoo-dev 2004-03-19 13:17:07 UTC
Fixed in CVS