Bug 43427 - Descent 3 emerge fails due to non-existant directory
Bug#: 43427 Product:  Gentoo Linux Version: 1.4 Platform: x86
OS/Version: Linux Status: RESOLVED Severity: normal Priority: P4
Resolution: FIXED Assigned To: games@gentoo.org Reported By: rimtech@elitesoldiers.com
Component: Games
URL: 
Summary: Descent 3 emerge fails due to non-existant directory
Keywords:  
Status Whiteboard: 
Opened: 2004-03-01 16:38 0000
Description:   Opened: 2004-03-01 16:38 0000
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 From SpanKY 2004-03-19 13:08:11 0000 -------
mkdir -p ${S}/{a,b}
would be easier

------- Comment #2 From Chris Gianelloni (RETIRED) 2004-03-19 13:17:07 0000 -------
Fixed in CVS