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-standalone-sdt/recipes-libraries/xilfpga-example_2024.2.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-standalone-sdt/recipes-libraries/xilfpga-example_2024.2.bb')
| -rw-r--r-- | meta-xilinx-standalone-sdt/recipes-libraries/xilfpga-example_2024.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-standalone-sdt/recipes-libraries/xilfpga-example_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-libraries/xilfpga-example_2024.2.bb index a3fb1560..10b3a77f 100644 --- a/meta-xilinx-standalone-sdt/recipes-libraries/xilfpga-example_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-libraries/xilfpga-example_2024.2.bb | |||
| @@ -22,7 +22,7 @@ do_install() { | |||
| 22 | 22 | ||
| 23 | do_deploy() { | 23 | do_deploy() { |
| 24 | install -d ${DEPLOYDIR}/${BPN}/ | 24 | install -d ${DEPLOYDIR}/${BPN}/ |
| 25 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ | 25 | install -Dm 0644 ${PKGD}/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ |
| 26 | } | 26 | } |
| 27 | addtask deploy before do_build after do_package | 27 | addtask deploy before do_build after do_package |
| 28 | 28 | ||
