diff options
| author | Khem Raj <raj.khem@gmail.com> | 2024-05-13 14:16:55 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-05-23 08:44:44 -0700 |
| commit | ffc64e9c6fee0af7eea3466135416d011172a5e6 (patch) | |
| tree | b9effa069d9af3c63d6f3a41caff6b887450522c /meta-filesystems | |
| parent | a90f89dbc7eff2ae83bab6a6676f4737c0b48a8d (diff) | |
| download | meta-openembedded-ffc64e9c6fee0af7eea3466135416d011172a5e6.tar.gz | |
recipes: Start WORKDIR -> UNPACKDIR transition
Replace references of WORKDIR with UNPACKDIR where it makes sense to do
so in preparation for changing the default value of UNPACKDIR.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-filesystems')
4 files changed, 8 insertions, 8 deletions
diff --git a/meta-filesystems/recipes-filesystems/owfs/owfs_3.2p3.bb b/meta-filesystems/recipes-filesystems/owfs/owfs_3.2p3.bb index b641e4c24e..7768a734d6 100644 --- a/meta-filesystems/recipes-filesystems/owfs/owfs_3.2p3.bb +++ b/meta-filesystems/recipes-filesystems/owfs/owfs_3.2p3.bb | |||
| @@ -37,8 +37,8 @@ EXTRA_OECONF = " \ | |||
| 37 | do_install:prepend() { | 37 | do_install:prepend() { |
| 38 | install -d ${D}${sysconfdir}/default/ | 38 | install -d ${D}${sysconfdir}/default/ |
| 39 | install -d ${D}${sysconfdir}/init.d/ | 39 | install -d ${D}${sysconfdir}/init.d/ |
| 40 | install -m 0755 ${WORKDIR}/owhttpd ${D}${sysconfdir}/init.d/owhttpd | 40 | install -m 0755 ${UNPACKDIR}/owhttpd ${D}${sysconfdir}/init.d/owhttpd |
| 41 | install -m 0755 ${WORKDIR}/owserver ${D}${sysconfdir}/init.d/owserver | 41 | install -m 0755 ${UNPACKDIR}/owserver ${D}${sysconfdir}/init.d/owserver |
| 42 | } | 42 | } |
| 43 | 43 | ||
| 44 | PACKAGES =+ "owftpd owhttpd owserver owshell libowcapi libow libownet owmon owtap" | 44 | PACKAGES =+ "owftpd owhttpd owserver owshell libowcapi libow libownet owmon owtap" |
diff --git a/meta-filesystems/recipes-support/fuse/fuse_2.9.9.bb b/meta-filesystems/recipes-support/fuse/fuse_2.9.9.bb index cee4879eee..6f613e9cd1 100644 --- a/meta-filesystems/recipes-support/fuse/fuse_2.9.9.bb +++ b/meta-filesystems/recipes-support/fuse/fuse_2.9.9.bb | |||
| @@ -68,7 +68,7 @@ do_install:append() { | |||
| 68 | # Install systemd related configuration file | 68 | # Install systemd related configuration file |
| 69 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 69 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
| 70 | install -d ${D}${sysconfdir}/modules-load.d | 70 | install -d ${D}${sysconfdir}/modules-load.d |
| 71 | install -m 0644 ${WORKDIR}/fuse.conf ${D}${sysconfdir}/modules-load.d | 71 | install -m 0644 ${UNPACKDIR}/fuse.conf ${D}${sysconfdir}/modules-load.d |
| 72 | fi | 72 | fi |
| 73 | } | 73 | } |
| 74 | 74 | ||
diff --git a/meta-filesystems/recipes-utils/aufs-util/aufs-util_git.bb b/meta-filesystems/recipes-utils/aufs-util/aufs-util_git.bb index ad846af470..4d2b909809 100644 --- a/meta-filesystems/recipes-utils/aufs-util/aufs-util_git.bb +++ b/meta-filesystems/recipes-utils/aufs-util/aufs-util_git.bb | |||
| @@ -33,7 +33,7 @@ do_configure:prepend() { | |||
| 33 | 33 | ||
| 34 | do_configure:append () { | 34 | do_configure:append () { |
| 35 | install -d ${S}/include/linux/ | 35 | install -d ${S}/include/linux/ |
| 36 | cp ${WORKDIR}/aufs_type.h ${S}/include/linux/ | 36 | cp ${UNPACKDIR}/aufs_type.h ${S}/include/linux/ |
| 37 | sed -i -e 's;__user;;' ${S}/include/linux/aufs_type.h | 37 | sed -i -e 's;__user;;' ${S}/include/linux/aufs_type.h |
| 38 | } | 38 | } |
| 39 | 39 | ||
diff --git a/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb b/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb index c8a80523dd..9e82b0f749 100644 --- a/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb +++ b/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb | |||
| @@ -58,10 +58,10 @@ do_install() { | |||
| 58 | 58 | ||
| 59 | unionmount_target_dir=${D}${prefix}/xfstests/unionmount-testsuite | 59 | unionmount_target_dir=${D}${prefix}/xfstests/unionmount-testsuite |
| 60 | install -d $unionmount_target_dir/tests | 60 | install -d $unionmount_target_dir/tests |
| 61 | install ${WORKDIR}/unionmount-testsuite/tests/* -t $unionmount_target_dir/tests | 61 | install ${UNPACKDIR}/unionmount-testsuite/tests/* -t $unionmount_target_dir/tests |
| 62 | install ${WORKDIR}/unionmount-testsuite/*.py -t $unionmount_target_dir | 62 | install ${UNPACKDIR}/unionmount-testsuite/*.py -t $unionmount_target_dir |
| 63 | install ${WORKDIR}/unionmount-testsuite/run -t $unionmount_target_dir | 63 | install ${UNPACKDIR}/unionmount-testsuite/run -t $unionmount_target_dir |
| 64 | install ${WORKDIR}/unionmount-testsuite/README -t $unionmount_target_dir | 64 | install ${UNPACKDIR}/unionmount-testsuite/README -t $unionmount_target_dir |
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | FILES:${PN} += "${prefix}/xfstests" | 67 | FILES:${PN} += "${prefix}/xfstests" |
