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-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb | |
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-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb')
-rw-r--r-- | meta-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb b/meta-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb index 7d51bc1c9..45eee8f1b 100644 --- a/meta-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb +++ b/meta-networking/recipes-support/cim-schema/cim-schema-exper_2.50.0.bb | |||
@@ -9,12 +9,12 @@ SRC_URI = "http://dmtf.org/sites/default/files/cim/cim_schema_v2500/cim_schema_$ | |||
9 | " | 9 | " |
10 | SRC_URI[md5sum] = "ee4ad6441a2b65ca60a3abc53e3ec629" | 10 | SRC_URI[md5sum] = "ee4ad6441a2b65ca60a3abc53e3ec629" |
11 | SRC_URI[sha256sum] = "a44d67881325e267ef46b72eabe0c69f90470b1033b1ce7c26d9ba99072adb50" | 11 | SRC_URI[sha256sum] = "a44d67881325e267ef46b72eabe0c69f90470b1033b1ce7c26d9ba99072adb50" |
12 | LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=eecc6f71a56ff3caf17f15bf7aeac7b4" | 12 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/LICENSE;md5=eecc6f71a56ff3caf17f15bf7aeac7b4" |
13 | 13 | ||
14 | do_install() { | 14 | do_install() { |
15 | install -d -m 0755 ${D}${datadir}/mof/cimv${PV}/ | 15 | install -d -m 0755 ${D}${datadir}/mof/cimv${PV}/ |
16 | install -d -m 0755 ${D}${datadir}/doc/cim-schema-${PV} | 16 | install -d -m 0755 ${D}${datadir}/doc/cim-schema-${PV} |
17 | install -m 644 ${WORKDIR}/LICENSE ${D}${datadir}/doc/cim-schema-${PV} | 17 | install -m 644 ${UNPACKDIR}/LICENSE ${D}${datadir}/doc/cim-schema-${PV} |
18 | 18 | ||
19 | cp -R --no-dereference --preserve=mode,links -v ${S}/* ${D}${datadir}/mof/cimv${PV}/ | 19 | cp -R --no-dereference --preserve=mode,links -v ${S}/* ${D}${datadir}/mof/cimv${PV}/ |
20 | chown -R root:root ${D}${datadir}/mof/cimv${PV} | 20 | chown -R root:root ${D}${datadir}/mof/cimv${PV} |