summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLei Maohui <leimaohui@fujitsu.com>2022-09-15 10:38:54 +0800
committerKhem Raj <raj.khem@gmail.com>2022-09-14 21:33:38 -0700
commit616be33c29a53c59790ff04f5710b68ade728835 (patch)
treea1b049559155c76b5a635f51d615e8417cb0bee7
parent7432c1a2ef9d75b078da31d268ffd016e8dcf583 (diff)
downloadmeta-openembedded-616be33c29a53c59790ff04f5710b68ade728835.tar.gz
fltk: Fix buildpaths warning.
Remove the build path from files. Signed-off-by: Lei Maohui <leimaohui@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/fltk/fltk.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/fltk/fltk.bb b/meta-oe/recipes-support/fltk/fltk.bb
index 3c9ee5ee3..82007c4cf 100644
--- a/meta-oe/recipes-support/fltk/fltk.bb
+++ b/meta-oe/recipes-support/fltk/fltk.bb
@@ -25,7 +25,9 @@ PACKAGECONFIG[xfixes] = "-DOPTION_USE_XFIXES=ON,-DOPTION_USE_XFIXES=OFF,libxfixe
25PACKAGECONFIG[xcursor] = "-DOPTION_USE_XCURSOR=ON,-DOPTION_USE_XCURSOR=OFF,libxcursor" 25PACKAGECONFIG[xcursor] = "-DOPTION_USE_XCURSOR=ON,-DOPTION_USE_XCURSOR=OFF,libxcursor"
26 26
27do_install:append() { 27do_install:append() {
28 sed -i -e 's,${STAGING_DIR_HOST},,g' ${D}${bindir}/fltk-config 28 sed -i -e 's,${TMPDIR},,g' ${D}${bindir}/fltk-config
29 sed -i -e 's,${TMPDIR},,g' ${D}${datadir}/fltk/UseFLTK.cmake
30 sed -i -e 's,${TMPDIR},,g' ${D}${datadir}/fltk/FLTK-Targets.cmake
29} 31}
30 32
31python populate_packages:prepend () { 33python populate_packages:prepend () {