summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libcap
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libcap')
-rw-r--r--meta/recipes-support/libcap/libcap_2.49.bb21
1 files changed, 8 insertions, 13 deletions
diff --git a/meta/recipes-support/libcap/libcap_2.49.bb b/meta/recipes-support/libcap/libcap_2.49.bb
index 3f4a9256cf..eb9fc5b4b3 100644
--- a/meta/recipes-support/libcap/libcap_2.49.bb
+++ b/meta/recipes-support/libcap/libcap_2.49.bb
@@ -20,15 +20,6 @@ UPSTREAM_CHECK_URI = "https://www.kernel.org/pub/linux/libs/security/linux-privs
20 20
21inherit lib_package 21inherit lib_package
22 22
23# do NOT pass target cflags to host compilations
24#
25do_configure() {
26 # libcap uses := for compilers, fortunately, it gives us a hint
27 # on what should be replaced with ?=
28 sed -e 's,:=,?=,g' -i Make.Rules
29 sed -e 's,^BUILD_CFLAGS ?= ,BUILD_CFLAGS := $(BUILD_CFLAGS) ,' -i Make.Rules
30}
31
32PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" 23PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}"
33PACKAGECONFIG_class-native ??= "" 24PACKAGECONFIG_class-native ??= ""
34 25
@@ -44,11 +35,15 @@ EXTRA_OEMAKE = " \
44 35
45EXTRA_OEMAKE_append_class-target = " SYSTEM_HEADERS=${STAGING_INCDIR}" 36EXTRA_OEMAKE_append_class-target = " SYSTEM_HEADERS=${STAGING_INCDIR}"
46 37
47# these are present in the libcap defaults, so include in our CFLAGS too
48CFLAGS += "-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
49
50do_compile() { 38do_compile() {
51 oe_runmake ${PACKAGECONFIG_CONFARGS} 39 unset CFLAGS BUILD_CFLAGS
40 oe_runmake \
41 ${PACKAGECONFIG_CONFARGS} \
42 AR="${AR}" \
43 CC="${CC}" \
44 RANLIB="${RANLIB}" \
45 COPTS="${CFLAGS}" \
46 BUILD_COPTS="${BUILD_CFLAGS}"
52} 47}
53 48
54do_install() { 49do_install() {