diff options
| author | Mark Hatle <mark.hatle@amd.com> | 2024-11-21 14:47:49 -0600 |
|---|---|---|
| committer | Mark Hatle <mark.hatle@amd.com> | 2024-11-21 14:47:51 -0600 |
| commit | ab07add28ff4c8acf68157de49ff29f59238e4e0 (patch) | |
| tree | ccb8ed3fd1092b8015c1bec5d4d41e7713a34a05 /meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb | |
| parent | 1241013c7bce4262a6128eb4ccb3db410831746d (diff) | |
| download | meta-xilinx-ab07add28ff4c8acf68157de49ff29f59238e4e0.tar.gz | |
various: Fix variable usage
Remove most direct references to WORKDIR.
S = "${WORKDIR}" is no longer allowed, adjust this to refer to UNPACKDIR
${WORKDIR}/package is also incorrect, adjust to ${PKGD}.
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb')
| -rw-r--r-- | meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb b/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb index 6e280009..191de878 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb | |||
| @@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = " \ | |||
| 15 | file://runtime_src/core/common/elf/LICENSE.txt;md5=b996e8b74af169e7e72e22d9e7d05b06 \ | 15 | file://runtime_src/core/common/elf/LICENSE.txt;md5=b996e8b74af169e7e72e22d9e7d05b06 \ |
| 16 | " | 16 | " |
| 17 | 17 | ||
| 18 | S = "${WORKDIR}/git/src" | 18 | S = "${UNPACKDIR}/git/src" |
| 19 | 19 | ||
| 20 | inherit cmake pkgconfig native | 20 | inherit cmake pkgconfig native |
| 21 | 21 | ||
| @@ -25,5 +25,5 @@ EXTRA_OECMAKE += " -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMANDS=ON" | |||
| 25 | 25 | ||
| 26 | do_install() { | 26 | do_install() { |
| 27 | install -d ${D}${bindir} | 27 | install -d ${D}${bindir} |
| 28 | install -Dm 0755 ${WORKDIR}/build/runtime_src/tools/xclbinutil/xclbinutil ${D}${bindir} | 28 | install -Dm 0755 ${B}/runtime_src/tools/xclbinutil/xclbinutil ${D}${bindir} |
| 29 | } | 29 | } |
