diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-05-20 11:47:24 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-21 18:11:01 -0700 |
commit | 31a6d8d88b418595ba0c09fee03062f161c30c98 (patch) | |
tree | aa5a7449a47900d6ddb79cfe8fee46bb75d02d9e | |
parent | 98a80a5f6a1b622266cee4e8b3b8e2e083178418 (diff) | |
download | meta-openembedded-31a6d8d88b418595ba0c09fee03062f161c30c98.tar.gz |
xrdb: Pass target CPP location to configure
CPP is encoded into xrdb binary and it ends up encoding the cpp from
HOSTTOOLS location which obviously wont be where cpp will live at
runtime
Fixes
WARNING: xrdb-1.2.1-r0 do_package_qa: QA Issue: File /usr/bin/xrdb in package xrdb contains reference to TMPDIR [buildpaths]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-graphics/xorg-app/xrdb_1.2.1.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/xorg-app/xrdb_1.2.1.bb b/meta-oe/recipes-graphics/xorg-app/xrdb_1.2.1.bb index a8c5b3d0a..20fdea1a5 100644 --- a/meta-oe/recipes-graphics/xorg-app/xrdb_1.2.1.bb +++ b/meta-oe/recipes-graphics/xorg-app/xrdb_1.2.1.bb | |||
@@ -6,3 +6,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d1167c4f586bd41f0c62166db4384a69" | |||
6 | DEPENDS += "libxmu" | 6 | DEPENDS += "libxmu" |
7 | 7 | ||
8 | SRC_URI[sha256sum] = "4f5d031c214ffb88a42ae7528492abde1178f5146351ceb3c05f3b8d5abee8b4" | 8 | SRC_URI[sha256sum] = "4f5d031c214ffb88a42ae7528492abde1178f5146351ceb3c05f3b8d5abee8b4" |
9 | |||
10 | EXTRA_OECONF += "--with-cpp=${bindir}/cpp" | ||