base.bbclass: If unpacking again, wipe out ${S}/patches
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 2 Mar 2012 11:53:26 +0000 (11:53 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 2 Mar 2012 16:22:48 +0000 (16:22 +0000)
If we unpack again, its assumed the data in any patches directory is invalid
since do_patch will run again. This ensures old patch data doesn't get
reused in a confused way.

Ideally we should probably wipe out ${S} here but that is probably a change
for another time.

[YOCTO #2043 partially]

(From OE-Core rev: 5fe5e6a15f26f23f0c5b863fafad7a0d382a55e2)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/base.bbclass

index a76fe55..39d3e78 100644 (file)
@@ -94,6 +94,7 @@ python base_do_fetch() {
 
 addtask unpack after do_fetch
 do_unpack[dirs] = "${WORKDIR}"
+do_unpack[cleandirs] = "${S}/patches"
 python base_do_unpack() {
        src_uri = (d.getVar('SRC_URI', True) or "").split()
        if len(src_uri) == 0: