diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-05-28 13:17:03 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-05-29 13:16:56 +0000 |
commit | 2fdfa68445349bff2047e9ae699f2a1511f9ac23 (patch) | |
tree | 8c8d2c5168e09ff639321f3f09ba4ed41ca224a9 | |
parent | d79afeac8c06b768364313e84b160cdebb0ec783 (diff) | |
download | meta-virtualization-2fdfa68445349bff2047e9ae699f2a1511f9ac23.tar.gz |
podman: convert remaining WORKDIR references to UNPACKDIR
While the WORKDIR references seem to work, they may not continue
to work. We switch to using UNPACKDIR which is where the SRC_URI
referenced elements / files will be placed by the fetcher.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/podman/podman_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-containers/podman/podman_git.bb b/recipes-containers/podman/podman_git.bb index 59bc2b9a..55bfede9 100644 --- a/recipes-containers/podman/podman_git.bb +++ b/recipes-containers/podman/podman_git.bb | |||
@@ -117,7 +117,7 @@ do_install() { | |||
117 | 117 | ||
118 | if ${@bb.utils.contains('PACKAGECONFIG', 'rootless', 'true', 'false', d)}; then | 118 | if ${@bb.utils.contains('PACKAGECONFIG', 'rootless', 'true', 'false', d)}; then |
119 | install -d "${D}${sysconfdir}/sysctl.d" | 119 | install -d "${D}${sysconfdir}/sysctl.d" |
120 | install -m 0644 "${WORKDIR}/50-podman-rootless.conf" "${D}${sysconfdir}/sysctl.d" | 120 | install -m 0644 "${UNPACKDIR}/50-podman-rootless.conf" "${D}${sysconfdir}/sysctl.d" |
121 | fi | 121 | fi |
122 | } | 122 | } |
123 | 123 | ||