diff options
author | alperak <alperyasinak1@gmail.com> | 2024-07-31 13:00:37 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-07-31 08:29:24 -0700 |
commit | d1bf2db7cc2bcb8b6ac45bb382c3f2b6bb762053 (patch) | |
tree | ec00a42072c2bf71110e04f7c0803639e48f24f7 | |
parent | f311f1f01c19924d8cced61fa915f1387f92455b (diff) | |
download | meta-openembedded-d1bf2db7cc2bcb8b6ac45bb382c3f2b6bb762053.tar.gz |
tayga: Fix contains reference to TMPDIR [buildpaths] warning
WARNING: tayga-0.9.2-r0 do_package_qa: QA Issue: File /usr/sbin/.debug/tayga in package tayga-dbg contains reference to TMPDIR [buildpaths]
Make sure that the OE provided CFLAGS are passed to the compiler.
Signed-off-by: alperak <alperyasinak1@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-networking/recipes-connectivity/tayga/tayga_0.9.2.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/tayga/tayga_0.9.2.bb b/meta-networking/recipes-connectivity/tayga/tayga_0.9.2.bb index f6b58559d4..f36435c8ea 100644 --- a/meta-networking/recipes-connectivity/tayga/tayga_0.9.2.bb +++ b/meta-networking/recipes-connectivity/tayga/tayga_0.9.2.bb | |||
@@ -12,6 +12,8 @@ SRC_URI[sha256sum] = "2b1f7927a9d2dcff9095aff3c271924b052ccfd2faca9588b277431a44 | |||
12 | SYSTEMD_PACKAGES = "${PN}" | 12 | SYSTEMD_PACKAGES = "${PN}" |
13 | SYSTEMD_SERVICE:${PN} = "tayga.service" | 13 | SYSTEMD_SERVICE:${PN} = "tayga.service" |
14 | 14 | ||
15 | EXTRA_OEMAKE += "CFLAGS='${CFLAGS}'" | ||
16 | |||
15 | do_install:append() { | 17 | do_install:append() { |
16 | install -m 0644 ${UNPACKDIR}/tayga.conf ${D}${sysconfdir}/tayga.conf | 18 | install -m 0644 ${UNPACKDIR}/tayga.conf ${D}${sysconfdir}/tayga.conf |
17 | install -d ${D}${systemd_unitdir}/system/ | 19 | install -d ${D}${systemd_unitdir}/system/ |
@@ -19,3 +21,4 @@ do_install:append() { | |||
19 | } | 21 | } |
20 | 22 | ||
21 | inherit autotools systemd | 23 | inherit autotools systemd |
24 | |||