diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2015-03-23 16:36:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-25 12:39:43 +0000 |
commit | f94450a40b7044a6cf4ae1e1b87bfe59147bd87f (patch) | |
tree | 2a5d913fda5d35dd48b924f31d3d3b09703e893a /meta/recipes-support | |
parent | f43d13c1d0599ad32864d053d5e97f7395b27092 (diff) | |
download | poky-f94450a40b7044a6cf4ae1e1b87bfe59147bd87f.tar.gz |
ca-certificates: clean up before do_compile()
Otherwise the script which converts mozilla certificates extracts
each certificate twice.
(From OE-Core rev: 3aae6a3c2786713115451f6b6fe151ba69369c1d)
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/ca-certificates/ca-certificates_20141019.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-support/ca-certificates/ca-certificates_20141019.bb b/meta/recipes-support/ca-certificates/ca-certificates_20141019.bb index e5a482138f..421b87ec02 100644 --- a/meta/recipes-support/ca-certificates/ca-certificates_20141019.bb +++ b/meta/recipes-support/ca-certificates/ca-certificates_20141019.bb | |||
@@ -29,6 +29,10 @@ EXTRA_OEMAKE = "\ | |||
29 | 'SBINDIR=${sbindir}' \ | 29 | 'SBINDIR=${sbindir}' \ |
30 | " | 30 | " |
31 | 31 | ||
32 | do_compile_prepend() { | ||
33 | oe_runmake clean | ||
34 | } | ||
35 | |||
32 | do_install () { | 36 | do_install () { |
33 | install -d ${D}${datadir}/ca-certificates \ | 37 | install -d ${D}${datadir}/ca-certificates \ |
34 | ${D}${sysconfdir}/ssl/certs \ | 38 | ${D}${sysconfdir}/ssl/certs \ |