diff options
author | Mike Crowe <mac@mcrowe.com> | 2016-02-08 10:57:50 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-15 10:16:37 +0100 |
commit | 2dfb2b2dab113ad472a678b223da8822315c20a9 (patch) | |
tree | 6b1d3eab202986415e7d5fb27fcb0e3dc78fecdd /meta-oe | |
parent | fcee6505914e0bf4e539998ee54e0de6128441bf (diff) | |
download | meta-openembedded-2dfb2b2dab113ad472a678b223da8822315c20a9.tar.gz |
pngcheck: 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.
Signed-off-by: Mike Crowe <mac@mcrowe.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb b/meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb index 445e8ad8e..d523b7a8f 100644 --- a/meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb +++ b/meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb | |||
@@ -9,6 +9,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/project/png-mng/${BPN}/${PV}/${BPN}-${PV}.tar.g | |||
9 | SRC_URI[md5sum] = "980bd6d9a3830fdce746d7fe3c9166ee" | 9 | SRC_URI[md5sum] = "980bd6d9a3830fdce746d7fe3c9166ee" |
10 | SRC_URI[sha256sum] = "77f0a039ac64df55fbd06af6f872fdbad4f639d009bbb5cd5cbe4db25690f35f" | 10 | SRC_URI[sha256sum] = "77f0a039ac64df55fbd06af6f872fdbad4f639d009bbb5cd5cbe4db25690f35f" |
11 | 11 | ||
12 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | ||
13 | |||
12 | do_compile() { | 14 | do_compile() { |
13 | oe_runmake -f Makefile.unx INCS=-I${STAGING_DIR_HOST}${incdir} LIBS=${STAGING_DIR_HOST}${libdir}/libz.a | 15 | oe_runmake -f Makefile.unx INCS=-I${STAGING_DIR_HOST}${incdir} LIBS=${STAGING_DIR_HOST}${libdir}/libz.a |
14 | } | 16 | } |
@@ -19,4 +21,3 @@ do_install() { | |||
19 | install png-fix-IDAT-windowsize ${D}${bindir} | 21 | install png-fix-IDAT-windowsize ${D}${bindir} |
20 | install pngsplit ${D}${bindir} | 22 | install pngsplit ${D}${bindir} |
21 | } | 23 | } |
22 | |||