diff options
author | Ryan Eatmon <reatmon@ti.com> | 2024-06-04 09:18:33 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2024-06-15 08:05:34 -0500 |
commit | 4f72749fc52cfb1c89b6e2d24f8d579ecb1b8212 (patch) | |
tree | 06181f325f7269125e21e7af848de8dfd451f1d6 | |
parent | 427ad9ac71d97f04ddcc0d1c2ef741899f070a99 (diff) | |
download | meta-ti-4f72749fc52cfb1c89b6e2d24f8d579ecb1b8212.tar.gz |
gdbc6x: Update to UNPACKDIR for files going into WORKDIR
For recipes that have file:// in SRC_URI, the files are placed into
WORKDIR. Moving forward [1], that directory will be UNPACKDIR and
eventually move to somewhere other than WORKDIR. So update all
references to WORKDIR that are looking for these file to use UNPACKDIR
instead.
[1] https://git.openembedded.org/openembedded-core/commit/?id=e022d62ba917790af2121da57646271ef17c03fa
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb index 012136ac..1f296dc5 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb | |||
@@ -36,7 +36,7 @@ do_install () { | |||
36 | cp -rf ${S}/install_gdb/include/* ${D}${includedir} | 36 | cp -rf ${S}/install_gdb/include/* ${D}${includedir} |
37 | 37 | ||
38 | install -d ${D}${sysconfdir}/init.d | 38 | install -d ${D}${sysconfdir}/init.d |
39 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/gdbserverproxy | 39 | install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/gdbserverproxy |
40 | } | 40 | } |
41 | 41 | ||
42 | RDEPENDS:${PN} = "gdbserverproxy-module-drv bash" | 42 | RDEPENDS:${PN} = "gdbserverproxy-module-drv bash" |