diff options
author | Anatol Belski <anbelski@linux.microsoft.com> | 2021-03-09 11:55:11 +0000 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2021-03-17 08:17:12 -0400 |
commit | c9de7989464c7cd774e25d23496ed63ffc4ecdf6 (patch) | |
tree | b997f1f00c5cd865374b5ecae7949209da0f7f3e | |
parent | 7af62c91d7d00a260cf28e7908955539304d100d (diff) | |
download | meta-selinux-c9de7989464c7cd774e25d23496ed63ffc4ecdf6.tar.gz |
libselinux-python: Fix build error due to missing target config
This fixes the error below:
gcc: error: unrecognized command line option
‘-fmacro-prefix-map=/path/to/build/libselinux-python/3.0-r0=/usr/src/debug/libselinux-python/3.0-r0’
Without inheriting the config, supposedly a wrong compiler is used.
Signed-off-by: Anatol Belski <anbelski@linux.microsoft.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
-rw-r--r-- | recipes-security/selinux/libselinux-python_3.0.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-security/selinux/libselinux-python_3.0.bb b/recipes-security/selinux/libselinux-python_3.0.bb index 2b5438d..3c03df1 100644 --- a/recipes-security/selinux/libselinux-python_3.0.bb +++ b/recipes-security/selinux/libselinux-python_3.0.bb | |||
@@ -4,6 +4,8 @@ SRC_URI = "https://github.com/SELinuxProject/selinux/releases/download/${SELINUX | |||
4 | 4 | ||
5 | require ${BPN}.inc | 5 | require ${BPN}.inc |
6 | 6 | ||
7 | inherit python3targetconfig | ||
8 | |||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=84b4d2c6ef954a2d4081e775a270d0d0" | 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=84b4d2c6ef954a2d4081e775a270d0d0" |
8 | 10 | ||
9 | SRC_URI[md5sum] = "b387a66f087b6d97713570e85ec89d89" | 11 | SRC_URI[md5sum] = "b387a66f087b6d97713570e85ec89d89" |