From: Koen Kooi Date: Thu, 23 Jan 2014 09:06:28 +0000 (+0100) Subject: lz4: actually install things X-Git-Tag: 2015-4~3895 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a2a77730f28decfd2448bcda68280174b55cf54c;p=openembedded-core.git lz4: actually install things This failure was masked by having lz4 installed on the host system :( Signed-off-by: Koen Kooi Signed-off-by: Saul Wold --- diff --git a/meta/recipes-support/lz4/lz4_svn.bb b/meta/recipes-support/lz4/lz4_svn.bb index 41464e2351..a760313daf 100644 --- a/meta/recipes-support/lz4/lz4_svn.bb +++ b/meta/recipes-support/lz4/lz4_svn.bb @@ -12,6 +12,10 @@ SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http" S = "${WORKDIR}/trunk" -EXTRA_OEMAKE = "PREFIX=${prefix} CC=${TARGET_PREFIX}gcc DESTDIR=${D}" +EXTRA_OEMAKE = "PREFIX=${prefix} CC=${TARGET_PREFIX}gcc DESTDIR=${D} LIBDIR=${libdir} INCLUDEDIR=${includedir}" + +do_install() { + oe_runmake install +} BBCLASSEXTEND += "native nativesdk"