mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
libcap: fix for non /usr/lib libdir case
the recipe has hardcoded "lib=lib", which does not work in libdir=/usr/lib64 case where should be "lib=lib64", So this patch fix it by replacing lib with libdir (From OE-Core rev: 2919954a2cbd41a08b99b691b8f7502b061267f1) Signed-off-by: Yu Ke <ke.yu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -20,8 +20,9 @@ do_configure() {
|
||||
sed -e 's,BUILD_CFLAGS ?=,BUILD_CFLAGS := $(BUILD_CFLAGS),' -i Make.Rules
|
||||
}
|
||||
|
||||
EXTRA_OEMAKE = "LIBATTR=yes PAM_CAP=yes INDENT= lib=lib SYSTEM_HEADERS=${STAGING_INCDIR} RAISE_SETFCAP=no"
|
||||
EXTRA_OEMAKE_virtclass-native = "LIBATTR=no PAM_CAP=no INDENT= lib=lib"
|
||||
EXTRA_OEMAKE = "LIBATTR=yes PAM_CAP=yes INDENT= SYSTEM_HEADERS=${STAGING_INCDIR} RAISE_SETFCAP=no"
|
||||
EXTRA_OEMAKE_virtclass-native = "LIBATTR=no PAM_CAP=no INDENT= "
|
||||
EXTRA_OEMAKE += " lib=${@os.path.basename('${libdir}')}"
|
||||
|
||||
do_compile() {
|
||||
oe_runmake
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
require libcap.inc
|
||||
|
||||
PR = "r1"
|
||||
PR = "r2"
|
||||
|
||||
SRC_URI[md5sum] = "10e47ed32ca2214eb0e58780282d27b4"
|
||||
SRC_URI[sha256sum] = "20e7c1ea4d3d5c410efb3a6ff138dc417912fae316d883460dcd58d9803a9220"
|
||||
|
||||
Reference in New Issue
Block a user