diff options
author | Mike Crowe <mac@mcrowe.com> | 2016-02-08 21:29:10 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-11 12:27:47 +0000 |
commit | 9937c936193e25ef3c833a26aac23b92960b39a8 (patch) | |
tree | 77b6fdbac00ea25d1bbbea0582db39f006cb80c2 /meta/recipes-extended | |
parent | 7475c4c2e5d6997de0582eaec85748ab99c30d0a (diff) | |
download | poky-9937c936193e25ef3c833a26aac23b92960b39a8.tar.gz |
hdparm: Explicitly set EXTRA_OEMAKE as required
This recipe currently relies on EXTRA_OEMAKE having been to set to
"-e MAKEFLAGS=" in bitbake.conf to operate. It is necessary to make
this explicit so that the default in bitbake.conf can be changed.
Unlike the other recipes that I've fixed recently, this one manifests
itself in a more subtle way by failing a QA check.
Reported-by: Ross Burton <ross.burton@intel.com>
(From OE-Core rev: 71a76dc29cf8938b79d356ec8d6bbe3e5375493a)
Signed-off-by: Mike Crowe <mac@mcrowe.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/hdparm/hdparm_9.48.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/hdparm/hdparm_9.48.bb b/meta/recipes-extended/hdparm/hdparm_9.48.bb index 8267fd9025..ec3d26f420 100644 --- a/meta/recipes-extended/hdparm/hdparm_9.48.bb +++ b/meta/recipes-extended/hdparm/hdparm_9.48.bb | |||
@@ -21,7 +21,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/hdparm/${BP}.tar.gz " | |||
21 | SRC_URI[md5sum] = "213efdbe7471fad3408198918e164354" | 21 | SRC_URI[md5sum] = "213efdbe7471fad3408198918e164354" |
22 | SRC_URI[sha256sum] = "ce97b4a71cb04146f54cf6f69787e7f97ddfda9836dc803b459d3b3df3a4fbee" | 22 | SRC_URI[sha256sum] = "ce97b4a71cb04146f54cf6f69787e7f97ddfda9836dc803b459d3b3df3a4fbee" |
23 | 23 | ||
24 | EXTRA_OEMAKE += 'STRIP="echo"' | 24 | EXTRA_OEMAKE = '-e MAKEFLAGS= STRIP="echo"' |
25 | 25 | ||
26 | inherit update-alternatives | 26 | inherit update-alternatives |
27 | 27 | ||