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-oe | |
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-oe')
104 files changed, 220 insertions, 219 deletions
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb index d348ef8be..17a1d3c94 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb | |||
@@ -70,13 +70,13 @@ do_install:append() { | |||
70 | 70 | ||
71 | install -m 0755 -d ${D}${sysconfdir} | 71 | install -m 0755 -d ${D}${sysconfdir} |
72 | install -m 0755 -d ${D}${sysconfdir}/lirc | 72 | install -m 0755 -d ${D}${sysconfdir}/lirc |
73 | install -m 0644 ${WORKDIR}/lircd.conf ${D}${sysconfdir}/lirc/ | 73 | install -m 0644 ${UNPACKDIR}/lircd.conf ${D}${sysconfdir}/lirc/ |
74 | install -m 0644 ${WORKDIR}/lirc_options.conf ${D}${sysconfdir}/lirc/ | 74 | install -m 0644 ${UNPACKDIR}/lirc_options.conf ${D}${sysconfdir}/lirc/ |
75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
76 | install -m 0755 -d ${D}${systemd_unitdir}/system ${D}${libdir}/tmpfiles.d | 76 | install -m 0755 -d ${D}${systemd_unitdir}/system ${D}${libdir}/tmpfiles.d |
77 | install -m 0644 ${WORKDIR}/lircd.service ${D}${systemd_unitdir}/system/ | 77 | install -m 0644 ${UNPACKDIR}/lircd.service ${D}${systemd_unitdir}/system/ |
78 | install -m 0755 ${WORKDIR}/lircexec.init ${D}${systemd_unitdir}/system/ | 78 | install -m 0755 ${UNPACKDIR}/lircexec.init ${D}${systemd_unitdir}/system/ |
79 | install -m 0644 ${WORKDIR}/lirc.tmpfiles ${D}${libdir}/tmpfiles.d/lirc.conf | 79 | install -m 0644 ${UNPACKDIR}/lirc.tmpfiles ${D}${libdir}/tmpfiles.d/lirc.conf |
80 | else | 80 | else |
81 | rm -rf ${D}/lib | 81 | rm -rf ${D}/lib |
82 | fi | 82 | fi |
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb index 0d0f6fea4..246cdfe3f 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb | |||
@@ -55,13 +55,13 @@ do_install:append(){ | |||
55 | 55 | ||
56 | install -d ${D}${sysconfdir}/thingsboard-gateway/config | 56 | install -d ${D}${sysconfdir}/thingsboard-gateway/config |
57 | 57 | ||
58 | for file in $(find ${WORKDIR} -maxdepth 1 -type f -name *.json); do | 58 | for file in $(find ${UNPACKDIR} -maxdepth 1 -type f -name *.json); do |
59 | install -m 0644 "$file" ${D}${sysconfdir}/thingsboard-gateway/config | 59 | install -m 0644 "$file" ${D}${sysconfdir}/thingsboard-gateway/config |
60 | done | 60 | done |
61 | 61 | ||
62 | install -m 0644 ${WORKDIR}/tb_gateway.yaml ${D}${sysconfdir}/thingsboard-gateway/config | 62 | install -m 0644 ${UNPACKDIR}/tb_gateway.yaml ${D}${sysconfdir}/thingsboard-gateway/config |
63 | install -m 0644 ${WORKDIR}/logs.conf ${D}${sysconfdir}/thingsboard-gateway/config | 63 | install -m 0644 ${UNPACKDIR}/logs.conf ${D}${sysconfdir}/thingsboard-gateway/config |
64 | 64 | ||
65 | install -d ${D}${systemd_unitdir}/system/ | 65 | install -d ${D}${systemd_unitdir}/system/ |
66 | install -m 0644 ${WORKDIR}/thingsboard-gateway.service ${D}${systemd_system_unitdir}/thingsboard-gateway.service | 66 | install -m 0644 ${UNPACKDIR}/thingsboard-gateway.service ${D}${systemd_system_unitdir}/thingsboard-gateway.service |
67 | } | 67 | } |
diff --git a/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.0.bb b/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.0.bb index c083a3a37..a7a3bf12c 100644 --- a/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.0.bb +++ b/meta-oe/dynamic-layers/perl-layer/recipes-support/rasdaemon/rasdaemon_0.8.0.bb | |||
@@ -34,9 +34,9 @@ LDFLAGS:append:libc-musl = " -largp" | |||
34 | 34 | ||
35 | do_install:append() { | 35 | do_install:append() { |
36 | install -d ${D}${sysconfdir}/init.d | 36 | install -d ${D}${sysconfdir}/init.d |
37 | install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/rasdaemon | 37 | install -m 755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/rasdaemon |
38 | install -d ${D}${systemd_unitdir}/system | 38 | install -d ${D}${systemd_unitdir}/system |
39 | install -m 0644 ${WORKDIR}/rasdaemon.service ${D}${systemd_unitdir}/system | 39 | install -m 0644 ${UNPACKDIR}/rasdaemon.service ${D}${systemd_unitdir}/system |
40 | } | 40 | } |
41 | 41 | ||
42 | FILES:${PN} += "${sbindir}/rasdaemon \ | 42 | FILES:${PN} += "${sbindir}/rasdaemon \ |
diff --git a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf-configfs_1.0.bb b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf-configfs_1.0.bb index 1c26c7207..35b3a5c08 100644 --- a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf-configfs_1.0.bb +++ b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf-configfs_1.0.bb | |||
@@ -14,17 +14,17 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" | |||
14 | 14 | ||
15 | do_install() { | 15 | do_install() { |
16 | install -d ${D}${bindir} | 16 | install -d ${D}${bindir} |
17 | install -m 0755 ${WORKDIR}/android-gadget-setup ${D}${bindir} | 17 | install -m 0755 ${UNPACKDIR}/android-gadget-setup ${D}${bindir} |
18 | install -m 0755 ${WORKDIR}/android-gadget-start ${D}${bindir} | 18 | install -m 0755 ${UNPACKDIR}/android-gadget-start ${D}${bindir} |
19 | install -m 0755 ${WORKDIR}/android-gadget-cleanup ${D}${bindir} | 19 | install -m 0755 ${UNPACKDIR}/android-gadget-cleanup ${D}${bindir} |
20 | 20 | ||
21 | if [ -r ${WORKDIR}/android-gadget-setup.machine ] ; then | 21 | if [ -r ${UNPACKDIR}/android-gadget-setup.machine ] ; then |
22 | install -d ${D}${sysconfdir} | 22 | install -d ${D}${sysconfdir} |
23 | install -m 0644 ${WORKDIR}/android-gadget-setup.machine ${D}${sysconfdir} | 23 | install -m 0644 ${UNPACKDIR}/android-gadget-setup.machine ${D}${sysconfdir} |
24 | fi | 24 | fi |
25 | 25 | ||
26 | install -d ${D}${systemd_unitdir}/system/android-tools-adbd.service.d | 26 | install -d ${D}${systemd_unitdir}/system/android-tools-adbd.service.d |
27 | install -m 0644 ${WORKDIR}/10-adbd-configfs.conf ${D}${systemd_unitdir}/system/android-tools-adbd.service.d | 27 | install -m 0644 ${UNPACKDIR}/10-adbd-configfs.conf ${D}${systemd_unitdir}/system/android-tools-adbd.service.d |
28 | } | 28 | } |
29 | 29 | ||
30 | FILES:${PN} += " \ | 30 | FILES:${PN} += " \ |
diff --git a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf_1.0.bb b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf_1.0.bb index b63ccbb08..cb2ff672e 100644 --- a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf_1.0.bb +++ b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools-conf_1.0.bb | |||
@@ -7,7 +7,7 @@ SRC_URI = "file://android-gadget-setup" | |||
7 | 7 | ||
8 | do_install() { | 8 | do_install() { |
9 | install -d ${D}${bindir} | 9 | install -d ${D}${bindir} |
10 | install -m 0755 ${WORKDIR}/android-gadget-setup ${D}${bindir} | 10 | install -m 0755 ${UNPACKDIR}/android-gadget-setup ${D}${bindir} |
11 | } | 11 | } |
12 | 12 | ||
13 | python () { | 13 | python () { |
diff --git a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb index fbad5e136..f63b5c04b 100644 --- a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb +++ b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb | |||
@@ -153,7 +153,7 @@ do_install() { | |||
153 | fi | 153 | fi |
154 | 154 | ||
155 | # Outside the if statement to avoid errors during do_package | 155 | # Outside the if statement to avoid errors during do_package |
156 | install -D -p -m0644 ${WORKDIR}/android-tools-adbd.service \ | 156 | install -D -p -m0644 ${UNPACKDIR}/android-tools-adbd.service \ |
157 | ${D}${systemd_unitdir}/system/android-tools-adbd.service | 157 | ${D}${systemd_unitdir}/system/android-tools-adbd.service |
158 | 158 | ||
159 | install -d ${D}${libdir}/android/ | 159 | install -d ${D}${libdir}/android/ |
diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_506.bb b/meta-oe/recipes-benchmark/iozone3/iozone3_506.bb index 5a1306b6f..6ab1121ef 100644 --- a/meta-oe/recipes-benchmark/iozone3/iozone3_506.bb +++ b/meta-oe/recipes-benchmark/iozone3/iozone3_506.bb | |||
@@ -37,8 +37,8 @@ do_install() { | |||
37 | 37 | ||
38 | install -m 0755 ${S}/iozone ${D}${bindir} | 38 | install -m 0755 ${S}/iozone ${D}${bindir} |
39 | install -m 0755 ${S}/fileop ${D}${bindir} | 39 | install -m 0755 ${S}/fileop ${D}${bindir} |
40 | install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/iozone.1 ${D}${mandir}/man1/ | 40 | install -m 0644 ${S}/../../docs/iozone.1 ${D}${mandir}/man1/ |
41 | install -m 0644 ${WORKDIR}/copyright.txt ${D}${datadir}/doc/${BPN}/ | 41 | install -m 0644 ${UNPACKDIR}/copyright.txt ${D}${datadir}/doc/${BPN}/ |
42 | 42 | ||
43 | install -m 0644 ${S}/*.dem ${D}${datadir}/doc/${BPN}/examples | 43 | install -m 0644 ${S}/*.dem ${D}${datadir}/doc/${BPN}/examples |
44 | install -m 0644 ${S}/client_list ${D}${datadir}/doc/${BPN}/examples | 44 | install -m 0644 ${S}/client_list ${D}${datadir}/doc/${BPN}/examples |
@@ -48,9 +48,9 @@ do_install() { | |||
48 | install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${BPN}/examples | 48 | install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${BPN}/examples |
49 | install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${BPN}/examples | 49 | install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${BPN}/examples |
50 | 50 | ||
51 | install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/Iozone_ps.gz ${D}${datadir}/doc/${BPN}/ | 51 | install -m 0644 ${S}/../../docs/Iozone_ps.gz ${D}${datadir}/doc/${BPN}/ |
52 | install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/IOzone_msword_98.pdf ${D}${datadir}/doc/${BPN}/ | 52 | install -m 0644 ${S}/../../docs/IOzone_msword_98.pdf ${D}${datadir}/doc/${BPN}/ |
53 | install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/Run_rules.doc ${D}${datadir}/doc/${BPN}/ | 53 | install -m 0644 ${S}/../../docs/Run_rules.doc ${D}${datadir}/doc/${BPN}/ |
54 | } | 54 | } |
55 | 55 | ||
56 | FILES:${PN} += "${datadir}/doc/${PN}/copyright.txt" | 56 | FILES:${PN} += "${datadir}/doc/${PN}/copyright.txt" |
diff --git a/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb b/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb index 603004ddd..b49951cc2 100644 --- a/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb +++ b/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "LINPACK Benchmarks are a measure of a system's floating point com | |||
2 | SUMMARY = "LINPACK is a software library for performing numerical linear algebra on digital computers" | 2 | SUMMARY = "LINPACK is a software library for performing numerical linear algebra on digital computers" |
3 | 3 | ||
4 | LICENSE = "PD" | 4 | LICENSE = "PD" |
5 | LIC_FILES_CHKSUM ="file://${WORKDIR}/linpacknew.c;beginline=1;endline=23;md5=aa025e3bc44190c71e4c5e3b084fed87" | 5 | LIC_FILES_CHKSUM ="file://${UNPACKDIR}/linpacknew.c;beginline=1;endline=23;md5=aa025e3bc44190c71e4c5e3b084fed87" |
6 | 6 | ||
7 | SRC_URI = "http://www.netlib.org/benchmark/linpackc.new;downloadfilename=linpacknew.c \ | 7 | SRC_URI = "http://www.netlib.org/benchmark/linpackc.new;downloadfilename=linpacknew.c \ |
8 | file://0001-linpack-Define-DP-only-when-SP-is-not-defined.patch \ | 8 | file://0001-linpack-Define-DP-only-when-SP-is-not-defined.patch \ |
diff --git a/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb b/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb index 57f73eedc..6729e81fa 100644 --- a/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb +++ b/meta-oe/recipes-benchmark/lmbench/lmbench_3.0-a9.bb | |||
@@ -75,7 +75,7 @@ do_install () { | |||
75 | DESTDIR="${D}" \ | 75 | DESTDIR="${D}" \ |
76 | -C src install | 76 | -C src install |
77 | mv ${D}${bindir}/line ${D}${bindir}/lm_line | 77 | mv ${D}${bindir}/line ${D}${bindir}/lm_line |
78 | install -m 0755 ${WORKDIR}/lmbench-run ${D}${bindir}/ | 78 | install -m 0755 ${UNPACKDIR}/lmbench-run ${D}${bindir}/ |
79 | install -m 0755 ${S}/bin/${TARGET_SYS}/cache ${D}${bindir}/ | 79 | install -m 0755 ${S}/bin/${TARGET_SYS}/cache ${D}${bindir}/ |
80 | sed -i -e 's,^SHAREDIR=.*$,SHAREDIR=${datadir}/${BPN},;' \ | 80 | sed -i -e 's,^SHAREDIR=.*$,SHAREDIR=${datadir}/${BPN},;' \ |
81 | -e 's,^CONFIG=.*$,CONFIG=`$SCRIPTSDIR/config`,;' \ | 81 | -e 's,^CONFIG=.*$,CONFIG=`$SCRIPTSDIR/config`,;' \ |
diff --git a/meta-oe/recipes-bsp/edac-utils/edac-utils_git.bb b/meta-oe/recipes-bsp/edac-utils/edac-utils_git.bb index 03076cbc6..6c80f4c81 100644 --- a/meta-oe/recipes-bsp/edac-utils/edac-utils_git.bb +++ b/meta-oe/recipes-bsp/edac-utils/edac-utils_git.bb | |||
@@ -48,7 +48,7 @@ RDEPENDS:${PN}:append = " \ | |||
48 | 48 | ||
49 | do_install:append() { | 49 | do_install:append() { |
50 | install -d ${D}${systemd_unitdir}/system | 50 | install -d ${D}${systemd_unitdir}/system |
51 | install -m 644 ${WORKDIR}/edac.service ${D}/${systemd_unitdir}/system | 51 | install -m 644 ${UNPACKDIR}/edac.service ${D}/${systemd_unitdir}/system |
52 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}/${systemd_unitdir}/system/edac.service | 52 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}/${systemd_unitdir}/system/edac.service |
53 | } | 53 | } |
54 | 54 | ||
diff --git a/meta-oe/recipes-bsp/firmwared/firmwared_git.bb b/meta-oe/recipes-bsp/firmwared/firmwared_git.bb index 0a041835e..f3760a40e 100644 --- a/meta-oe/recipes-bsp/firmwared/firmwared_git.bb +++ b/meta-oe/recipes-bsp/firmwared/firmwared_git.bb | |||
@@ -29,6 +29,6 @@ do_configure:prepend() { | |||
29 | 29 | ||
30 | do_install:append() { | 30 | do_install:append() { |
31 | install -d ${D}${systemd_system_unitdir} | 31 | install -d ${D}${systemd_system_unitdir} |
32 | install -m 0644 ${WORKDIR}/firmwared.service ${D}${systemd_system_unitdir} | 32 | install -m 0644 ${UNPACKDIR}/firmwared.service ${D}${systemd_system_unitdir} |
33 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/firmwared.service | 33 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/firmwared.service |
34 | } | 34 | } |
diff --git a/meta-oe/recipes-bsp/irda-utils/irda-utils_0.9.18.bb b/meta-oe/recipes-bsp/irda-utils/irda-utils_0.9.18.bb index fa1bb928c..22bb30a50 100644 --- a/meta-oe/recipes-bsp/irda-utils/irda-utils_0.9.18.bb +++ b/meta-oe/recipes-bsp/irda-utils/irda-utils_0.9.18.bb | |||
@@ -60,5 +60,5 @@ do_install () { | |||
60 | done | 60 | done |
61 | 61 | ||
62 | install -d ${D}${sysconfdir}/init.d | 62 | install -d ${D}${sysconfdir}/init.d |
63 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} | 63 | install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} |
64 | } | 64 | } |
diff --git a/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb b/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb index aba5ab587..f956224e1 100644 --- a/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb +++ b/meta-oe/recipes-bsp/lm_sensors/lmsensors_3.6.0.bb | |||
@@ -70,11 +70,11 @@ do_install() { | |||
70 | install -d ${D}${INIT_D_DIR} | 70 | install -d ${D}${INIT_D_DIR} |
71 | 71 | ||
72 | # Install fancontrol init script | 72 | # Install fancontrol init script |
73 | install -m 0755 ${WORKDIR}/fancontrol.init ${D}${INIT_D_DIR}/fancontrol | 73 | install -m 0755 ${UNPACKDIR}/fancontrol.init ${D}${INIT_D_DIR}/fancontrol |
74 | 74 | ||
75 | if ${@bb.utils.contains('PACKAGECONFIG', 'sensord', 'true', 'false', d)}; then | 75 | if ${@bb.utils.contains('PACKAGECONFIG', 'sensord', 'true', 'false', d)}; then |
76 | # Install sensord init script | 76 | # Install sensord init script |
77 | install -m 0755 ${WORKDIR}/sensord.init ${D}${INIT_D_DIR}/sensord | 77 | install -m 0755 ${UNPACKDIR}/sensord.init ${D}${INIT_D_DIR}/sensord |
78 | fi | 78 | fi |
79 | 79 | ||
80 | # Insall sensord service script | 80 | # Insall sensord service script |
diff --git a/meta-oe/recipes-connectivity/gammu/gammu_1.42.0.bb b/meta-oe/recipes-connectivity/gammu/gammu_1.42.0.bb index aa52f6257..e6ec9c357 100644 --- a/meta-oe/recipes-connectivity/gammu/gammu_1.42.0.bb +++ b/meta-oe/recipes-connectivity/gammu/gammu_1.42.0.bb | |||
@@ -22,8 +22,8 @@ do_install:append() { | |||
22 | rm -rf ${D}/usr/share/gammu | 22 | rm -rf ${D}/usr/share/gammu |
23 | #install default configuration files | 23 | #install default configuration files |
24 | install -d ${D}${sysconfdir} | 24 | install -d ${D}${sysconfdir} |
25 | install -m 0644 ${WORKDIR}/gammurc ${D}${sysconfdir}/gammurc | 25 | install -m 0644 ${UNPACKDIR}/gammurc ${D}${sysconfdir}/gammurc |
26 | install -m 0644 ${WORKDIR}/gammu-smsdrc ${D}${sysconfdir}/gammu-smsdrc | 26 | install -m 0644 ${UNPACKDIR}/gammu-smsdrc ${D}${sysconfdir}/gammu-smsdrc |
27 | } | 27 | } |
28 | 28 | ||
29 | EXTRA_OECONF = " \ | 29 | EXTRA_OECONF = " \ |
diff --git a/meta-oe/recipes-connectivity/hostapd/hostapd_2.10.bb b/meta-oe/recipes-connectivity/hostapd/hostapd_2.10.bb index dbdc5c1bd..e547462bb 100644 --- a/meta-oe/recipes-connectivity/hostapd/hostapd_2.10.bb +++ b/meta-oe/recipes-connectivity/hostapd/hostapd_2.10.bb | |||
@@ -29,7 +29,7 @@ SYSTEMD_SERVICE:${PN} = "hostapd.service" | |||
29 | SYSTEMD_AUTO_ENABLE:${PN} = "disable" | 29 | SYSTEMD_AUTO_ENABLE:${PN} = "disable" |
30 | 30 | ||
31 | do_configure:append() { | 31 | do_configure:append() { |
32 | install -m 0644 ${WORKDIR}/defconfig ${B}/.config | 32 | install -m 0644 ${UNPACKDIR}/defconfig ${B}/.config |
33 | } | 33 | } |
34 | 34 | ||
35 | do_compile() { | 35 | do_compile() { |
@@ -43,8 +43,8 @@ do_install() { | |||
43 | install -m 0644 ${B}/hostapd.conf ${D}${sysconfdir} | 43 | install -m 0644 ${B}/hostapd.conf ${D}${sysconfdir} |
44 | install -m 0755 ${B}/hostapd ${D}${sbindir} | 44 | install -m 0755 ${B}/hostapd ${D}${sbindir} |
45 | install -m 0755 ${B}/hostapd_cli ${D}${sbindir} | 45 | install -m 0755 ${B}/hostapd_cli ${D}${sbindir} |
46 | install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/hostapd | 46 | install -m 755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/hostapd |
47 | install -m 0644 ${WORKDIR}/hostapd.service ${D}${systemd_unitdir}/system/ | 47 | install -m 0644 ${UNPACKDIR}/hostapd.service ${D}${systemd_unitdir}/system/ |
48 | sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/hostapd.service | 48 | sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/hostapd.service |
49 | } | 49 | } |
50 | 50 | ||
diff --git a/meta-oe/recipes-connectivity/krb5/krb5_1.21.2.bb b/meta-oe/recipes-connectivity/krb5/krb5_1.21.2.bb index 7af33e4e7..ed12fee94 100644 --- a/meta-oe/recipes-connectivity/krb5/krb5_1.21.2.bb +++ b/meta-oe/recipes-connectivity/krb5/krb5_1.21.2.bb | |||
@@ -74,8 +74,8 @@ do_install:append() { | |||
74 | 74 | ||
75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
76 | mkdir -p ${D}/${sysconfdir}/init.d ${D}/${sysconfdir}/default | 76 | mkdir -p ${D}/${sysconfdir}/init.d ${D}/${sysconfdir}/default |
77 | install -m 0755 ${WORKDIR}/etc/init.d/* ${D}/${sysconfdir}/init.d | 77 | install -m 0755 ${UNPACKDIR}/etc/init.d/* ${D}/${sysconfdir}/init.d |
78 | install -m 0644 ${WORKDIR}/etc/default/* ${D}/${sysconfdir}/default | 78 | install -m 0644 ${UNPACKDIR}/etc/default/* ${D}/${sysconfdir}/default |
79 | 79 | ||
80 | mkdir -p ${D}/${sysconfdir}/default/volatiles | 80 | mkdir -p ${D}/${sysconfdir}/default/volatiles |
81 | echo "d root root 0755 ${localstatedir}/run/krb5kdc none" \ | 81 | echo "d root root 0755 ${localstatedir}/run/krb5kdc none" \ |
@@ -90,11 +90,11 @@ do_install:append() { | |||
90 | > ${D}${sysconfdir}/tmpfiles.d/krb5.conf | 90 | > ${D}${sysconfdir}/tmpfiles.d/krb5.conf |
91 | 91 | ||
92 | mkdir -p ${D}/${sysconfdir}/default | 92 | mkdir -p ${D}/${sysconfdir}/default |
93 | install -m 0644 ${WORKDIR}/etc/default/* ${D}/${sysconfdir}/default | 93 | install -m 0644 ${UNPACKDIR}/etc/default/* ${D}/${sysconfdir}/default |
94 | 94 | ||
95 | install -d ${D}${systemd_system_unitdir} | 95 | install -d ${D}${systemd_system_unitdir} |
96 | install -m 0644 ${WORKDIR}/krb5-admin-server.service ${D}${systemd_system_unitdir} | 96 | install -m 0644 ${UNPACKDIR}/krb5-admin-server.service ${D}${systemd_system_unitdir} |
97 | install -m 0644 ${WORKDIR}/krb5-kdc.service ${D}${systemd_system_unitdir} | 97 | install -m 0644 ${UNPACKDIR}/krb5-kdc.service ${D}${systemd_system_unitdir} |
98 | fi | 98 | fi |
99 | 99 | ||
100 | sed -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \ | 100 | sed -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \ |
diff --git a/meta-oe/recipes-connectivity/linuxptp/linuxptp_4.1.bb b/meta-oe/recipes-connectivity/linuxptp/linuxptp_4.1.bb index 9a5c9b520..d1a73841a 100644 --- a/meta-oe/recipes-connectivity/linuxptp/linuxptp_4.1.bb +++ b/meta-oe/recipes-connectivity/linuxptp/linuxptp_4.1.bb | |||
@@ -46,10 +46,10 @@ do_install() { | |||
46 | install -d ${D}/${systemd_unitdir}/system/ | 46 | install -d ${D}/${systemd_unitdir}/system/ |
47 | for service in ${LINUXPTP_SYSTEMD_SERVICES}; do | 47 | for service in ${LINUXPTP_SYSTEMD_SERVICES}; do |
48 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ | 48 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ |
49 | ${WORKDIR}/systemd/$service.in | 49 | ${UNPACKDIR}/systemd/$service.in |
50 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | 50 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ |
51 | ${WORKDIR}/systemd/$service.in | 51 | ${UNPACKDIR}/systemd/$service.in |
52 | install -m 644 ${WORKDIR}/systemd/$service.in \ | 52 | install -m 644 ${UNPACKDIR}/systemd/$service.in \ |
53 | ${D}/${systemd_unitdir}/system/$service | 53 | ${D}/${systemd_unitdir}/system/$service |
54 | done | 54 | done |
55 | } | 55 | } |
diff --git a/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb b/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb index 21066b10f..f23692816 100644 --- a/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb +++ b/meta-oe/recipes-connectivity/ser2net/ser2net_4.6.2.bb | |||
@@ -24,7 +24,7 @@ CONFFILES:${PN} += "${sysconfdir}/ser2net/ser2net.yaml" | |||
24 | do_install:append() { | 24 | do_install:append() { |
25 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 25 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
26 | install -d ${D}${systemd_unitdir}/system | 26 | install -d ${D}${systemd_unitdir}/system |
27 | install -m 0644 ${WORKDIR}/ser2net.service ${D}${systemd_unitdir}/system/ | 27 | install -m 0644 ${UNPACKDIR}/ser2net.service ${D}${systemd_unitdir}/system/ |
28 | sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/ser2net.service | 28 | sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/ser2net.service |
29 | fi | 29 | fi |
30 | } | 30 | } |
diff --git a/meta-oe/recipes-connectivity/transmission/transmission_4.0.5.bb b/meta-oe/recipes-connectivity/transmission/transmission_4.0.5.bb index cbba31edb..b9ed3d925 100644 --- a/meta-oe/recipes-connectivity/transmission/transmission_4.0.5.bb +++ b/meta-oe/recipes-connectivity/transmission/transmission_4.0.5.bb | |||
@@ -32,9 +32,9 @@ TRANSMISSION_GROUP ??= "root" | |||
32 | 32 | ||
33 | do_install:append() { | 33 | do_install:append() { |
34 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 34 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
35 | sed -i '/USERNAME=/c\USERNAME=${TRANSMISSION_USER}' ${WORKDIR}/transmission-daemon | 35 | sed -i '/USERNAME=/c\USERNAME=${TRANSMISSION_USER}' ${UNPACKDIR}/transmission-daemon |
36 | install -d ${D}${sysconfdir}/init.d | 36 | install -d ${D}${sysconfdir}/init.d |
37 | install -m 0744 ${WORKDIR}/transmission-daemon ${D}${sysconfdir}/init.d/ | 37 | install -m 0744 ${UNPACKDIR}/transmission-daemon ${D}${sysconfdir}/init.d/ |
38 | chown ${TRANSMISSION_USER}:${TRANSMISSION_GROUP} ${D}${sysconfdir}/init.d/transmission-daemon | 38 | chown ${TRANSMISSION_USER}:${TRANSMISSION_GROUP} ${D}${sysconfdir}/init.d/transmission-daemon |
39 | fi | 39 | fi |
40 | 40 | ||
diff --git a/meta-oe/recipes-connectivity/zabbix/zabbix_6.2.7.bb b/meta-oe/recipes-connectivity/zabbix/zabbix_6.2.7.bb index 8708852ce..46c09a02a 100644 --- a/meta-oe/recipes-connectivity/zabbix/zabbix_6.2.7.bb +++ b/meta-oe/recipes-connectivity/zabbix/zabbix_6.2.7.bb | |||
@@ -68,7 +68,7 @@ do_configure:prepend() { | |||
68 | do_install:append() { | 68 | do_install:append() { |
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}${systemd_unitdir}/system | 70 | install -d ${D}${systemd_unitdir}/system |
71 | install -m 0644 ${WORKDIR}/zabbix-agent.service ${D}${systemd_unitdir}/system/ | 71 | install -m 0644 ${UNPACKDIR}/zabbix-agent.service ${D}${systemd_unitdir}/system/ |
72 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/zabbix-agent.service | 72 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/zabbix-agent.service |
73 | fi | 73 | fi |
74 | } | 74 | } |
diff --git a/meta-oe/recipes-core/emlog/emlog_git.bb b/meta-oe/recipes-core/emlog/emlog_git.bb index 6331f618f..3f3b5bc92 100644 --- a/meta-oe/recipes-core/emlog/emlog_git.bb +++ b/meta-oe/recipes-core/emlog/emlog_git.bb | |||
@@ -18,7 +18,7 @@ do_compile() { | |||
18 | } | 18 | } |
19 | 19 | ||
20 | do_install() { | 20 | do_install() { |
21 | install -Dm 0755 ${WORKDIR}/${BPN}.initd ${D}${sysconfdir}/init.d/${BPN} | 21 | install -Dm 0755 ${UNPACKDIR}/${BPN}.initd ${D}${sysconfdir}/init.d/${BPN} |
22 | install -Dm 0755 ${S}/nbcat ${D}${bindir}/nbcat | 22 | install -Dm 0755 ${S}/nbcat ${D}${bindir}/nbcat |
23 | install -Dm 0755 ${S}/mkemlog ${D}${bindir}/mkemlog | 23 | install -Dm 0755 ${S}/mkemlog ${D}${bindir}/mkemlog |
24 | } | 24 | } |
diff --git a/meta-oe/recipes-dbs/mysql/mariadb.inc b/meta-oe/recipes-dbs/mysql/mariadb.inc index 33da32fb2..bbfad1e47 100644 --- a/meta-oe/recipes-dbs/mysql/mariadb.inc +++ b/meta-oe/recipes-dbs/mysql/mariadb.inc | |||
@@ -31,8 +31,6 @@ SRC_URI[sha256sum] = "5239a245ed90517e96396605cd01ccd8f73cd7442d1b3076b6ffe25811 | |||
31 | 31 | ||
32 | UPSTREAM_CHECK_URI = "https://github.com/MariaDB/server/releases" | 32 | UPSTREAM_CHECK_URI = "https://github.com/MariaDB/server/releases" |
33 | 33 | ||
34 | S = "${WORKDIR}/mariadb-${PV}" | ||
35 | |||
36 | BINCONFIG_GLOB = "mysql_config" | 34 | BINCONFIG_GLOB = "mysql_config" |
37 | 35 | ||
38 | inherit cmake gettext binconfig update-rc.d systemd multilib_script pkgconfig | 36 | inherit cmake gettext binconfig update-rc.d systemd multilib_script pkgconfig |
@@ -163,18 +161,18 @@ do_install() { | |||
163 | oe_runmake 'DESTDIR=${D}' install | 161 | oe_runmake 'DESTDIR=${D}' install |
164 | 162 | ||
165 | install -d ${D}/${sysconfdir}/init.d | 163 | install -d ${D}/${sysconfdir}/init.d |
166 | install -m 0644 ${WORKDIR}/my.cnf ${D}/${sysconfdir}/ | 164 | install -m 0644 ${UNPACKDIR}/my.cnf ${D}/${sysconfdir}/ |
167 | install -m 0755 ${WORKDIR}/install_db ${D}/${sysconfdir}/init.d/ | 165 | install -m 0755 ${UNPACKDIR}/install_db ${D}/${sysconfdir}/init.d/ |
168 | mv ${D}/${sysconfdir}/init.d/mysql ${D}/${sysconfdir}/init.d/mysqld | 166 | mv ${D}/${sysconfdir}/init.d/mysql ${D}/${sysconfdir}/init.d/mysqld |
169 | 167 | ||
170 | install -d ${D}${systemd_unitdir}/system | 168 | install -d ${D}${systemd_unitdir}/system |
171 | install -m 0644 ${WORKDIR}/mysqld.service ${D}${systemd_unitdir}/system | 169 | install -m 0644 ${UNPACKDIR}/mysqld.service ${D}${systemd_unitdir}/system |
172 | install -m 0644 ${WORKDIR}/install_db.service ${D}${systemd_unitdir}/system | 170 | install -m 0644 ${UNPACKDIR}/install_db.service ${D}${systemd_unitdir}/system |
173 | sed -i -e 's,@BINDIR@,${bindir},g' -e 's,@PREFIX@,${prefix},g' ${D}${systemd_unitdir}/system/mysqld.service \ | 171 | sed -i -e 's,@BINDIR@,${bindir},g' -e 's,@PREFIX@,${prefix},g' ${D}${systemd_unitdir}/system/mysqld.service \ |
174 | ${D}${systemd_unitdir}/system/install_db.service | 172 | ${D}${systemd_unitdir}/system/install_db.service |
175 | 173 | ||
176 | install -d ${D}${bindir} | 174 | install -d ${D}${bindir} |
177 | install -m 755 ${WORKDIR}/mysql-systemd-start ${D}${bindir} | 175 | install -m 755 ${UNPACKDIR}/mysql-systemd-start ${D}${bindir} |
178 | install -d ${D}${datadir}/doc/${PN} | 176 | install -d ${D}${datadir}/doc/${PN} |
179 | if [ -f ${D}${datadir}/doc/README ]; then | 177 | if [ -f ${D}${datadir}/doc/README ]; then |
180 | mv ${D}${datadir}/doc/README ${D}${datadir}/doc/${PN}/ | 178 | mv ${D}${datadir}/doc/README ${D}${datadir}/doc/${PN}/ |
diff --git a/meta-oe/recipes-dbs/postgresql/postgresql.inc b/meta-oe/recipes-dbs/postgresql/postgresql.inc index e29a5bef7..2dd7dd6fd 100644 --- a/meta-oe/recipes-dbs/postgresql/postgresql.inc +++ b/meta-oe/recipes-dbs/postgresql/postgresql.inc | |||
@@ -198,24 +198,24 @@ do_install:append() { | |||
198 | 198 | ||
199 | # install dirs and server init | 199 | # install dirs and server init |
200 | install -d ${D}${sysconfdir}/init.d | 200 | install -d ${D}${sysconfdir}/init.d |
201 | install -m 0755 ${WORKDIR}/${BPN}.init ${D}${sysconfdir}/init.d/${BPN}-server | 201 | install -m 0755 ${UNPACKDIR}/${BPN}.init ${D}${sysconfdir}/init.d/${BPN}-server |
202 | sed -i -e "s/^PGVERSION=.*$/PGVERSION=${PV}/g" ${D}${sysconfdir}/init.d/${BPN}-server | 202 | sed -i -e "s/^PGVERSION=.*$/PGVERSION=${PV}/g" ${D}${sysconfdir}/init.d/${BPN}-server |
203 | install -m 0755 ${WORKDIR}/${BPN}-setup ${D}${bindir}/${BPN}-setup | 203 | install -m 0755 ${UNPACKDIR}/${BPN}-setup ${D}${bindir}/${BPN}-setup |
204 | install -d -m 700 ${D}${localstatedir}/lib/${BPN}/data | 204 | install -d -m 700 ${D}${localstatedir}/lib/${BPN}/data |
205 | install -d -m 700 ${D}${localstatedir}/lib/${BPN}/backups | 205 | install -d -m 700 ${D}${localstatedir}/lib/${BPN}/backups |
206 | install -m 644 ${WORKDIR}/${BPN}-profile ${D}${localstatedir}/lib/${BPN}/.profile | 206 | install -m 644 ${UNPACKDIR}/${BPN}-profile ${D}${localstatedir}/lib/${BPN}/.profile |
207 | chown -R postgres:postgres ${D}${localstatedir}/lib/${BPN} | 207 | chown -R postgres:postgres ${D}${localstatedir}/lib/${BPN} |
208 | # multiple server config directory | 208 | # multiple server config directory |
209 | install -d -m 700 ${D}${sysconfdir}/default/${BPN} | 209 | install -d -m 700 ${D}${sysconfdir}/default/${BPN} |
210 | 210 | ||
211 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then | 211 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then |
212 | install -d ${D}${sysconfdir}/pam.d | 212 | install -d ${D}${sysconfdir}/pam.d |
213 | install -m 644 ${WORKDIR}/postgresql.pam ${D}${sysconfdir}/pam.d/postgresql | 213 | install -m 644 ${UNPACKDIR}/postgresql.pam ${D}${sysconfdir}/pam.d/postgresql |
214 | fi | 214 | fi |
215 | 215 | ||
216 | # Install systemd unit files | 216 | # Install systemd unit files |
217 | install -d ${D}${systemd_unitdir}/system | 217 | install -d ${D}${systemd_unitdir}/system |
218 | install -m 0644 ${WORKDIR}/postgresql.service ${D}${systemd_unitdir}/system | 218 | install -m 0644 ${UNPACKDIR}/postgresql.service ${D}${systemd_unitdir}/system |
219 | sed -i -e 's,@BINDIR@,${bindir},g' \ | 219 | sed -i -e 's,@BINDIR@,${bindir},g' \ |
220 | ${D}${systemd_unitdir}/system/postgresql.service | 220 | ${D}${systemd_unitdir}/system/postgresql.service |
221 | # Remove the build path | 221 | # Remove the build path |
diff --git a/meta-oe/recipes-devtools/android-tools/android-tools-conf-configfs_1.0.bb b/meta-oe/recipes-devtools/android-tools/android-tools-conf-configfs_1.0.bb index 3f9d49a2d..430b53c4d 100644 --- a/meta-oe/recipes-devtools/android-tools/android-tools-conf-configfs_1.0.bb +++ b/meta-oe/recipes-devtools/android-tools/android-tools-conf-configfs_1.0.bb | |||
@@ -14,17 +14,17 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" | |||
14 | 14 | ||
15 | do_install() { | 15 | do_install() { |
16 | install -d ${D}${bindir} | 16 | install -d ${D}${bindir} |
17 | install -m 0755 ${WORKDIR}/android-gadget-setup ${D}${bindir} | 17 | install -m 0755 ${UNPACKDIR}/android-gadget-setup ${D}${bindir} |
18 | install -m 0755 ${WORKDIR}/android-gadget-start ${D}${bindir} | 18 | install -m 0755 ${UNPACKDIR}/android-gadget-start ${D}${bindir} |
19 | install -m 0755 ${WORKDIR}/android-gadget-cleanup ${D}${bindir} | 19 | install -m 0755 ${UNPACKDIR}/android-gadget-cleanup ${D}${bindir} |
20 | 20 | ||
21 | if [ -r ${WORKDIR}/android-gadget-setup.machine ] ; then | 21 | if [ -r ${UNPACKDIR}/android-gadget-setup.machine ] ; then |
22 | install -d ${D}${sysconfdir} | 22 | install -d ${D}${sysconfdir} |
23 | install -m 0644 ${WORKDIR}/android-gadget-setup.machine ${D}${sysconfdir} | 23 | install -m 0644 ${UNPACKDIR}/android-gadget-setup.machine ${D}${sysconfdir} |
24 | fi | 24 | fi |
25 | 25 | ||
26 | install -d ${D}${systemd_unitdir}/system/android-tools-adbd.service.d | 26 | install -d ${D}${systemd_unitdir}/system/android-tools-adbd.service.d |
27 | install -m 0644 ${WORKDIR}/10-adbd-configfs.conf ${D}${systemd_unitdir}/system/android-tools-adbd.service.d | 27 | install -m 0644 ${UNPACKDIR}/10-adbd-configfs.conf ${D}${systemd_unitdir}/system/android-tools-adbd.service.d |
28 | } | 28 | } |
29 | 29 | ||
30 | FILES:${PN} += " \ | 30 | FILES:${PN} += " \ |
diff --git a/meta-oe/recipes-devtools/android-tools/android-tools-conf_1.0.bb b/meta-oe/recipes-devtools/android-tools/android-tools-conf_1.0.bb index 34b1a9bdd..f73be8dbb 100644 --- a/meta-oe/recipes-devtools/android-tools/android-tools-conf_1.0.bb +++ b/meta-oe/recipes-devtools/android-tools/android-tools-conf_1.0.bb | |||
@@ -9,7 +9,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" | |||
9 | 9 | ||
10 | do_install() { | 10 | do_install() { |
11 | install -d ${D}${bindir} | 11 | install -d ${D}${bindir} |
12 | install -m 0755 ${WORKDIR}/android-gadget-setup ${D}${bindir} | 12 | install -m 0755 ${UNPACKDIR}/android-gadget-setup ${D}${bindir} |
13 | } | 13 | } |
14 | 14 | ||
15 | python () { | 15 | python () { |
diff --git a/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb b/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb index 1c66ea499..6343256d3 100644 --- a/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb +++ b/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb | |||
@@ -88,7 +88,7 @@ TOOLS:class-native = "fastboot ext4_utils mkbootimg" | |||
88 | TOOLS:class-nativesdk = "fastboot ext4_utils mkbootimg" | 88 | TOOLS:class-nativesdk = "fastboot ext4_utils mkbootimg" |
89 | 89 | ||
90 | do_compile() { | 90 | do_compile() { |
91 | cp ${WORKDIR}/gitignore ${S}/.gitignore | 91 | cp ${UNPACKDIR}/gitignore ${S}/.gitignore |
92 | 92 | ||
93 | # Setting both variables below causing our makefiles to not work with | 93 | # Setting both variables below causing our makefiles to not work with |
94 | # implicit make rules | 94 | # implicit make rules |
@@ -123,7 +123,7 @@ do_compile() { | |||
123 | 123 | ||
124 | for tool in ${TOOLS}; do | 124 | for tool in ${TOOLS}; do |
125 | mkdir -p ${B}/${tool} | 125 | mkdir -p ${B}/${tool} |
126 | oe_runmake -f ${B}/${tool}.mk -C ${B}/${tool} | 126 | oe_runmake -f ${UNPACKDIR}/${BPN}/${tool}.mk -C ${B}/${tool} |
127 | done | 127 | done |
128 | } | 128 | } |
129 | 129 | ||
@@ -151,7 +151,7 @@ do_install() { | |||
151 | fi | 151 | fi |
152 | 152 | ||
153 | # Outside the if statement to avoid errors during do_package | 153 | # Outside the if statement to avoid errors during do_package |
154 | install -D -p -m0644 ${WORKDIR}/android-tools-adbd.service \ | 154 | install -D -p -m0644 ${UNPACKDIR}/android-tools-adbd.service \ |
155 | ${D}${systemd_unitdir}/system/android-tools-adbd.service | 155 | ${D}${systemd_unitdir}/system/android-tools-adbd.service |
156 | 156 | ||
157 | if echo ${TOOLS} | grep -q "fastboot" ; then | 157 | if echo ${TOOLS} | grep -q "fastboot" ; then |
diff --git a/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_1.4.bb b/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_1.4.bb index 479b98d44..599675a34 100644 --- a/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_1.4.bb +++ b/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_1.4.bb | |||
@@ -24,7 +24,7 @@ do_install:append() { | |||
24 | 24 | ||
25 | do_install:append:class-target() { | 25 | do_install:append:class-target() { |
26 | install -d ${D}${sysconfdir}/yum.repos.d | 26 | install -d ${D}${sysconfdir}/yum.repos.d |
27 | install -m 0644 ${WORKDIR}/oe-remote.repo.sample ${D}${sysconfdir}/yum.repos.d | 27 | install -m 0644 ${UNPACKDIR}/oe-remote.repo.sample ${D}${sysconfdir}/yum.repos.d |
28 | } | 28 | } |
29 | 29 | ||
30 | do_install:append:class-nativesdk() { | 30 | do_install:append:class-nativesdk() { |
diff --git a/meta-oe/recipes-devtools/iptraf/iptraf-ng_1.2.1.bb b/meta-oe/recipes-devtools/iptraf/iptraf-ng_1.2.1.bb index 0f6bbb4d5..f9e2c7873 100644 --- a/meta-oe/recipes-devtools/iptraf/iptraf-ng_1.2.1.bb +++ b/meta-oe/recipes-devtools/iptraf/iptraf-ng_1.2.1.bb | |||
@@ -42,7 +42,7 @@ do_compile() { | |||
42 | do_install() { | 42 | do_install() { |
43 | oe_runmake DESTDIR=${D} install | 43 | oe_runmake DESTDIR=${D} install |
44 | install -D -m 0644 -p ${S}/iptraf-ng-logrotate.conf ${D}${sysconfdir}/logrotate.d/iptraf-ng | 44 | install -D -m 0644 -p ${S}/iptraf-ng-logrotate.conf ${D}${sysconfdir}/logrotate.d/iptraf-ng |
45 | install -Dm 0644 ${WORKDIR}/iptraf-ng-tmpfiles.conf ${D}${libdir}/tmpfiles.d/iptraf-ng-tmpfiles.conf | 45 | install -Dm 0644 ${UNPACKDIR}/iptraf-ng-tmpfiles.conf ${D}${libdir}/tmpfiles.d/iptraf-ng-tmpfiles.conf |
46 | } | 46 | } |
47 | 47 | ||
48 | FILES:${PN} += "${libdir}/tmpfiles.d" | 48 | FILES:${PN} += "${libdir}/tmpfiles.d" |
diff --git a/meta-oe/recipes-devtools/php/php_8.2.18.bb b/meta-oe/recipes-devtools/php/php_8.2.18.bb index da04ffba6..e662f6806 100644 --- a/meta-oe/recipes-devtools/php/php_8.2.18.bb +++ b/meta-oe/recipes-devtools/php/php_8.2.18.bb | |||
@@ -182,19 +182,19 @@ do_install:append:class-target() { | |||
182 | rm -rf ${D}/.[a-z]* | 182 | rm -rf ${D}/.[a-z]* |
183 | rm -rf ${D}/var | 183 | rm -rf ${D}/var |
184 | rm -f ${D}/${sysconfdir}/php-fpm.conf.default | 184 | rm -f ${D}/${sysconfdir}/php-fpm.conf.default |
185 | install -m 0644 ${WORKDIR}/php-fpm.conf ${D}/${sysconfdir}/php-fpm.conf | 185 | install -m 0644 ${UNPACKDIR}/php-fpm.conf ${D}/${sysconfdir}/php-fpm.conf |
186 | install -d ${D}/${sysconfdir}/apache2/conf.d | 186 | install -d ${D}/${sysconfdir}/apache2/conf.d |
187 | install -m 0644 ${WORKDIR}/php-fpm-apache.conf ${D}/${sysconfdir}/apache2/conf.d/php-fpm.conf | 187 | install -m 0644 ${UNPACKDIR}/php-fpm-apache.conf ${D}/${sysconfdir}/apache2/conf.d/php-fpm.conf |
188 | install -d ${D}${sysconfdir}/init.d | 188 | install -d ${D}${sysconfdir}/init.d |
189 | sed -i 's:=/usr/sbin:=${sbindir}:g' ${B}/sapi/fpm/init.d.php-fpm | 189 | sed -i 's:=/usr/sbin:=${sbindir}:g' ${B}/sapi/fpm/init.d.php-fpm |
190 | sed -i 's:=/etc:=${sysconfdir}:g' ${B}/sapi/fpm/init.d.php-fpm | 190 | sed -i 's:=/etc:=${sysconfdir}:g' ${B}/sapi/fpm/init.d.php-fpm |
191 | sed -i 's:=/var:=${localstatedir}:g' ${B}/sapi/fpm/init.d.php-fpm | 191 | sed -i 's:=/var:=${localstatedir}:g' ${B}/sapi/fpm/init.d.php-fpm |
192 | install -m 0755 ${B}/sapi/fpm/init.d.php-fpm ${D}${sysconfdir}/init.d/php-fpm | 192 | install -m 0755 ${B}/sapi/fpm/init.d.php-fpm ${D}${sysconfdir}/init.d/php-fpm |
193 | install -m 0644 ${WORKDIR}/php-fpm-apache.conf ${D}/${sysconfdir}/apache2/conf.d/php-fpm.conf | 193 | install -m 0644 ${UNPACKDIR}/php-fpm-apache.conf ${D}/${sysconfdir}/apache2/conf.d/php-fpm.conf |
194 | 194 | ||
195 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)};then | 195 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)};then |
196 | install -d ${D}${systemd_system_unitdir} | 196 | install -d ${D}${systemd_system_unitdir} |
197 | install -m 0644 ${WORKDIR}/php-fpm.service ${D}${systemd_system_unitdir}/php-fpm.service | 197 | install -m 0644 ${UNPACKDIR}/php-fpm.service ${D}${systemd_system_unitdir}/php-fpm.service |
198 | sed -i -e 's,@LOCALSTATEDIR@,${localstatedir},g' ${D}${systemd_system_unitdir}/php-fpm.service | 198 | sed -i -e 's,@LOCALSTATEDIR@,${localstatedir},g' ${D}${systemd_system_unitdir}/php-fpm.service |
199 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/php-fpm.service | 199 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/php-fpm.service |
200 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/php-fpm.service | 200 | sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/php-fpm.service |
@@ -203,7 +203,7 @@ do_install:append:class-target() { | |||
203 | if ${@bb.utils.contains('PACKAGECONFIG', 'apache2', 'true', 'false', d)}; then | 203 | if ${@bb.utils.contains('PACKAGECONFIG', 'apache2', 'true', 'false', d)}; then |
204 | install -d ${D}${sysconfdir}/apache2/modules.d | 204 | install -d ${D}${sysconfdir}/apache2/modules.d |
205 | install -d ${D}${sysconfdir}/php/apache2-php${PHP_MAJOR_VERSION} | 205 | install -d ${D}${sysconfdir}/php/apache2-php${PHP_MAJOR_VERSION} |
206 | install -m 644 ${WORKDIR}/70_mod_php${PHP_MAJOR_VERSION}.conf ${D}${sysconfdir}/apache2/modules.d | 206 | install -m 644 ${UNPACKDIR}/70_mod_php${PHP_MAJOR_VERSION}.conf ${D}${sysconfdir}/apache2/modules.d |
207 | sed -i s,lib/,${libexecdir}/, ${D}${sysconfdir}/apache2/modules.d/70_mod_php${PHP_MAJOR_VERSION}.conf | 207 | sed -i s,lib/,${libexecdir}/, ${D}${sysconfdir}/apache2/modules.d/70_mod_php${PHP_MAJOR_VERSION}.conf |
208 | cat ${S}/php.ini-production | \ | 208 | cat ${S}/php.ini-production | \ |
209 | sed -e 's,extension_dir = \"\./\",extension_dir = \"/usr/lib/extensions\",' \ | 209 | sed -e 's,extension_dir = \"\./\",extension_dir = \"/usr/lib/extensions\",' \ |
diff --git a/meta-oe/recipes-extended/bitwise/bitwise_0.50.bb b/meta-oe/recipes-extended/bitwise/bitwise_0.50.bb index 5cd20c5b1..178a5eb0b 100644 --- a/meta-oe/recipes-extended/bitwise/bitwise_0.50.bb +++ b/meta-oe/recipes-extended/bitwise/bitwise_0.50.bb | |||
@@ -27,6 +27,6 @@ inherit autotools ptest | |||
27 | 27 | ||
28 | do_install_ptest() { | 28 | do_install_ptest() { |
29 | install -d ${D}${PTEST_PATH} | 29 | install -d ${D}${PTEST_PATH} |
30 | install -m 0644 ${WORKDIR}/ptest.out.expected ${D}${PTEST_PATH}/ptest.out.expected | 30 | install -m 0644 ${UNPACKDIR}/ptest.out.expected ${D}${PTEST_PATH}/ptest.out.expected |
31 | } | 31 | } |
32 | 32 | ||
diff --git a/meta-oe/recipes-extended/collectd/collectd_5.12.0.bb b/meta-oe/recipes-extended/collectd/collectd_5.12.0.bb index 02f1fcb42..df36b6469 100644 --- a/meta-oe/recipes-extended/collectd/collectd_5.12.0.bb +++ b/meta-oe/recipes-extended/collectd/collectd_5.12.0.bb | |||
@@ -63,7 +63,7 @@ EXTRA_OECONF = " \ | |||
63 | 63 | ||
64 | do_install:append() { | 64 | do_install:append() { |
65 | install -d ${D}${sysconfdir}/init.d | 65 | install -d ${D}${sysconfdir}/init.d |
66 | install -m 0755 ${WORKDIR}/collectd.init ${D}${sysconfdir}/init.d/collectd | 66 | install -m 0755 ${UNPACKDIR}/collectd.init ${D}${sysconfdir}/init.d/collectd |
67 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/collectd | 67 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/collectd |
68 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/collectd | 68 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/collectd |
69 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/collectd | 69 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/collectd |
@@ -77,7 +77,7 @@ do_install:append() { | |||
77 | 77 | ||
78 | # Install systemd unit files | 78 | # Install systemd unit files |
79 | install -d ${D}${systemd_unitdir}/system | 79 | install -d ${D}${systemd_unitdir}/system |
80 | install -m 0644 ${WORKDIR}/collectd.service ${D}${systemd_unitdir}/system | 80 | install -m 0644 ${UNPACKDIR}/collectd.service ${D}${systemd_unitdir}/system |
81 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ | 81 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ |
82 | ${D}${systemd_unitdir}/system/collectd.service | 82 | ${D}${systemd_unitdir}/system/collectd.service |
83 | } | 83 | } |
diff --git a/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.3.bb b/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.3.bb index fe5e5c067..a293048a2 100644 --- a/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.3.bb +++ b/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.3.bb | |||
@@ -50,14 +50,14 @@ EXTRA_OECONF = " \ | |||
50 | " | 50 | " |
51 | 51 | ||
52 | do_compile:prepend() { | 52 | do_compile:prepend() { |
53 | install -m 0644 ${WORKDIR}/qtplot-0.2/qtopia.trm ${S}/term/ | 53 | install -m 0644 ${UNPACKDIR}/qtplot-0.2/qtopia.trm ${S}/term/ |
54 | } | 54 | } |
55 | 55 | ||
56 | do_install:append:class-target() { | 56 | do_install:append:class-target() { |
57 | install -d ${D}${datadir}/applications/ | 57 | install -d ${D}${datadir}/applications/ |
58 | install -m 0644 ${WORKDIR}/gnuplot.desktop ${D}${datadir}/applications/ | 58 | install -m 0644 ${UNPACKDIR}/gnuplot.desktop ${D}${datadir}/applications/ |
59 | install -d ${D}${datadir}/pixmaps/ | 59 | install -d ${D}${datadir}/pixmaps/ |
60 | install -m 0644 ${WORKDIR}/gnuplot.png ${D}${datadir}/pixmaps/ | 60 | install -m 0644 ${UNPACKDIR}/gnuplot.png ${D}${datadir}/pixmaps/ |
61 | } | 61 | } |
62 | 62 | ||
63 | PACKAGES =+ "${PN}-x11" | 63 | PACKAGES =+ "${PN}-x11" |
diff --git a/meta-oe/recipes-extended/inputattach-config/inputattach-config.bb b/meta-oe/recipes-extended/inputattach-config/inputattach-config.bb index 84ed3b052..fb1aefad6 100644 --- a/meta-oe/recipes-extended/inputattach-config/inputattach-config.bb +++ b/meta-oe/recipes-extended/inputattach-config/inputattach-config.bb | |||
@@ -8,5 +8,5 @@ do_configure[noexec] = "1" | |||
8 | do_compile[noexec] = "1" | 8 | do_compile[noexec] = "1" |
9 | 9 | ||
10 | do_install() { | 10 | do_install() { |
11 | install -Dm 0644 ${WORKDIR}/inputattach.conf ${D}${sysconfdir}/inputattach.conf | 11 | install -Dm 0644 ${UNPACKDIR}/inputattach.conf ${D}${sysconfdir}/inputattach.conf |
12 | } | 12 | } |
diff --git a/meta-oe/recipes-extended/linuxconsole/linuxconsole_1.7.1.bb b/meta-oe/recipes-extended/linuxconsole/linuxconsole_1.7.1.bb index 5716817e9..a2a420ced 100644 --- a/meta-oe/recipes-extended/linuxconsole/linuxconsole_1.7.1.bb +++ b/meta-oe/recipes-extended/linuxconsole/linuxconsole_1.7.1.bb | |||
@@ -50,11 +50,11 @@ do_compile() { | |||
50 | do_install() { | 50 | do_install() { |
51 | oe_runmake install | 51 | oe_runmake install |
52 | 52 | ||
53 | install -Dm 0644 ${WORKDIR}/51-these-are-not-joysticks-rm.rules ${D}${nonarch_base_libdir}/udev/rules.d/51-these-are-not-joysticks-rm.rules | 53 | install -Dm 0644 ${UNPACKDIR}/51-these-are-not-joysticks-rm.rules ${D}${nonarch_base_libdir}/udev/rules.d/51-these-are-not-joysticks-rm.rules |
54 | install -Dm 0644 ${WORKDIR}/60-joystick.rules ${D}${nonarch_base_libdir}/udev/rules.d/60-joystick.rules | 54 | install -Dm 0644 ${UNPACKDIR}/60-joystick.rules ${D}${nonarch_base_libdir}/udev/rules.d/60-joystick.rules |
55 | 55 | ||
56 | install -Dm 0644 ${WORKDIR}/inputattach.service ${D}${systemd_system_unitdir}/inputattach.service | 56 | install -Dm 0644 ${UNPACKDIR}/inputattach.service ${D}${systemd_system_unitdir}/inputattach.service |
57 | install -Dm 0755 ${WORKDIR}/inputattachctl ${D}${bindir}/inputattachctl | 57 | install -Dm 0755 ${UNPACKDIR}/inputattachctl ${D}${bindir}/inputattachctl |
58 | } | 58 | } |
59 | 59 | ||
60 | PACKAGES += "inputattach joystick-jscal joystick" | 60 | PACKAGES += "inputattach joystick-jscal joystick" |
diff --git a/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.15.0.bb b/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.15.0.bb index beb247c25..c9b369f0a 100644 --- a/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.15.0.bb +++ b/meta-oe/recipes-extended/minifi-cpp/minifi-cpp_0.15.0.bb | |||
@@ -47,7 +47,7 @@ SRCREV_FORMAT .= "_expected-lite_range-v3_magic-enum_cxxopts_gsl-lite_date_asio_ | |||
47 | SRC_URI[ossp-uuid.sha256sum] = "11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0" | 47 | SRC_URI[ossp-uuid.sha256sum] = "11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0" |
48 | SRC_URI[libsodium.sha256sum] = "018d79fe0a045cca07331d37bd0cb57b2e838c51bc48fd837a1472e50068bbea" | 48 | SRC_URI[libsodium.sha256sum] = "018d79fe0a045cca07331d37bd0cb57b2e838c51bc48fd837a1472e50068bbea" |
49 | 49 | ||
50 | S = "${WORKDIR}/git" | 50 | S = "${UNPACKDIR}/git" |
51 | 51 | ||
52 | inherit pkgconfig cmake systemd | 52 | inherit pkgconfig cmake systemd |
53 | 53 | ||
@@ -162,7 +162,7 @@ do_install() { | |||
162 | 162 | ||
163 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 163 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
164 | install -m 755 -d ${D}${sysconfdir}/tmpfiles.d | 164 | install -m 755 -d ${D}${sysconfdir}/tmpfiles.d |
165 | install -m 644 ${WORKDIR}/systemd-volatile.conf ${D}${sysconfdir}/tmpfiles.d/minifi.conf | 165 | install -m 644 ${UNPACKDIR}/systemd-volatile.conf ${D}${sysconfdir}/tmpfiles.d/minifi.conf |
166 | sed -i "s|@MINIFI_LOG@|${MINIFI_LOG}|g" ${D}${sysconfdir}/tmpfiles.d/minifi.conf | 166 | sed -i "s|@MINIFI_LOG@|${MINIFI_LOG}|g" ${D}${sysconfdir}/tmpfiles.d/minifi.conf |
167 | 167 | ||
168 | install -m 755 -d ${D}${systemd_system_unitdir} | 168 | install -m 755 -d ${D}${systemd_system_unitdir} |
@@ -174,7 +174,7 @@ do_install() { | |||
174 | 174 | ||
175 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 175 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
176 | install -d ${D}${sysconfdir}/default/volatiles | 176 | install -d ${D}${sysconfdir}/default/volatiles |
177 | install -m 0644 ${WORKDIR}/sysvinit-volatile.conf ${D}${sysconfdir}/default/volatiles/99_minifi | 177 | install -m 0644 ${UNPACKDIR}/sysvinit-volatile.conf ${D}${sysconfdir}/default/volatiles/99_minifi |
178 | 178 | ||
179 | sed -i "s|@MINIFI_LOG@|${MINIFI_LOG}|g" ${D}${sysconfdir}/default/volatiles/99_minifi | 179 | sed -i "s|@MINIFI_LOG@|${MINIFI_LOG}|g" ${D}${sysconfdir}/default/volatiles/99_minifi |
180 | fi | 180 | fi |
diff --git a/meta-oe/recipes-extended/networking/mstpd_git.bb b/meta-oe/recipes-extended/networking/mstpd_git.bb index b2043ef06..e6e1f9a3b 100644 --- a/meta-oe/recipes-extended/networking/mstpd_git.bb +++ b/meta-oe/recipes-extended/networking/mstpd_git.bb | |||
@@ -26,8 +26,8 @@ do_install:append() { | |||
26 | rmdir ${D}${libdir} || true | 26 | rmdir ${D}${libdir} || true |
27 | 27 | ||
28 | install -d -m 0755 ${D}${sbindir} | 28 | install -d -m 0755 ${D}${sbindir} |
29 | install -m 0755 ${WORKDIR}/bridge-stp ${D}${sbindir} | 29 | install -m 0755 ${UNPACKDIR}/bridge-stp ${D}${sbindir} |
30 | 30 | ||
31 | install -d -m 0755 ${D}${systemd_system_unitdir} | 31 | install -d -m 0755 ${D}${systemd_system_unitdir} |
32 | install -m 0644 ${WORKDIR}/mstpd.service ${D}${systemd_system_unitdir} | 32 | install -m 0644 ${UNPACKDIR}/mstpd.service ${D}${systemd_system_unitdir} |
33 | } | 33 | } |
diff --git a/meta-oe/recipes-extended/openwsman/openwsman_2.7.2.bb b/meta-oe/recipes-extended/openwsman/openwsman_2.7.2.bb index 1c68b5f43..5437ea13e 100644 --- a/meta-oe/recipes-extended/openwsman/openwsman_2.7.2.bb +++ b/meta-oe/recipes-extended/openwsman/openwsman_2.7.2.bb | |||
@@ -57,7 +57,7 @@ do_install:append() { | |||
57 | chmod 755 ${D}/${sysconfdir}/openwsman/owsmangencert.sh | 57 | chmod 755 ${D}/${sysconfdir}/openwsman/owsmangencert.sh |
58 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 58 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
59 | install -d ${D}/${systemd_unitdir}/system | 59 | install -d ${D}/${systemd_unitdir}/system |
60 | install -m 644 ${WORKDIR}/openwsmand.service ${D}/${systemd_unitdir}/system | 60 | install -m 644 ${UNPACKDIR}/openwsmand.service ${D}/${systemd_unitdir}/system |
61 | 61 | ||
62 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/openwsmand.service | 62 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/openwsmand.service |
63 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/openwsmand.service | 63 | sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/openwsmand.service |
diff --git a/meta-oe/recipes-extended/polkit/polkit-group-rule-datetime.bb b/meta-oe/recipes-extended/polkit/polkit-group-rule-datetime.bb index 8a14018a8..2159482eb 100644 --- a/meta-oe/recipes-extended/polkit/polkit-group-rule-datetime.bb +++ b/meta-oe/recipes-extended/polkit/polkit-group-rule-datetime.bb | |||
@@ -7,7 +7,7 @@ require polkit-group-rule.inc | |||
7 | SRC_URI = "file://50-org.freedesktop.timedate1.rules" | 7 | SRC_URI = "file://50-org.freedesktop.timedate1.rules" |
8 | 8 | ||
9 | do_install() { | 9 | do_install() { |
10 | install -m 0755 ${WORKDIR}/50-org.freedesktop.timedate1.rules ${D}${sysconfdir}/polkit-1/rules.d | 10 | install -m 0755 ${UNPACKDIR}/50-org.freedesktop.timedate1.rules ${D}${sysconfdir}/polkit-1/rules.d |
11 | } | 11 | } |
12 | 12 | ||
13 | USERADD_PACKAGES = "${PN}" | 13 | USERADD_PACKAGES = "${PN}" |
diff --git a/meta-oe/recipes-extended/polkit/polkit-group-rule-network.bb b/meta-oe/recipes-extended/polkit/polkit-group-rule-network.bb index 8266fa639..bfd3361df 100644 --- a/meta-oe/recipes-extended/polkit/polkit-group-rule-network.bb +++ b/meta-oe/recipes-extended/polkit/polkit-group-rule-network.bb | |||
@@ -7,7 +7,7 @@ require polkit-group-rule.inc | |||
7 | SRC_URI = "file://50-org.freedesktop.NetworkManager.rules" | 7 | SRC_URI = "file://50-org.freedesktop.NetworkManager.rules" |
8 | 8 | ||
9 | do_install() { | 9 | do_install() { |
10 | install -m 0755 ${WORKDIR}/50-org.freedesktop.NetworkManager.rules ${D}${sysconfdir}/polkit-1/rules.d | 10 | install -m 0755 ${UNPACKDIR}/50-org.freedesktop.NetworkManager.rules ${D}${sysconfdir}/polkit-1/rules.d |
11 | } | 11 | } |
12 | 12 | ||
13 | USERADD_PACKAGES = "${PN}" | 13 | USERADD_PACKAGES = "${PN}" |
diff --git a/meta-oe/recipes-extended/polkit/polkit-group-rule-udisks2.bb b/meta-oe/recipes-extended/polkit/polkit-group-rule-udisks2.bb index db2ed015b..8dc8c5e25 100644 --- a/meta-oe/recipes-extended/polkit/polkit-group-rule-udisks2.bb +++ b/meta-oe/recipes-extended/polkit/polkit-group-rule-udisks2.bb | |||
@@ -10,7 +10,7 @@ SRC_URI = "file://50-org.freedesktop.udiskie.rules" | |||
10 | RDEPENDS:${PN} += "udisks2" | 10 | RDEPENDS:${PN} += "udisks2" |
11 | 11 | ||
12 | do_install() { | 12 | do_install() { |
13 | install -m 0755 ${WORKDIR}/50-org.freedesktop.udiskie.rules ${D}${sysconfdir}/polkit-1/rules.d | 13 | install -m 0755 ${UNPACKDIR}/50-org.freedesktop.udiskie.rules ${D}${sysconfdir}/polkit-1/rules.d |
14 | } | 14 | } |
15 | 15 | ||
16 | USERADD_PACKAGES = "${PN}" | 16 | USERADD_PACKAGES = "${PN}" |
diff --git a/meta-oe/recipes-extended/rarpd/rarpd_ss981107.bb b/meta-oe/recipes-extended/rarpd/rarpd_ss981107.bb index 7359c1254..293431245 100644 --- a/meta-oe/recipes-extended/rarpd/rarpd_ss981107.bb +++ b/meta-oe/recipes-extended/rarpd/rarpd_ss981107.bb | |||
@@ -36,10 +36,10 @@ do_install() { | |||
36 | install -m 755 rarpd.init ${D}${sysconfdir}/init.d/rarpd | 36 | install -m 755 rarpd.init ${D}${sysconfdir}/init.d/rarpd |
37 | install -m 755 rarpd ${D}${sbindir}/rarpd | 37 | install -m 755 rarpd ${D}${sbindir}/rarpd |
38 | install -m 644 rarpd.8 ${D}${mandir}/man8/rarpd.8 | 38 | install -m 644 rarpd.8 ${D}${mandir}/man8/rarpd.8 |
39 | install -m 644 ${WORKDIR}/ethers.sample ${D}${sysconfdir}/ethers | 39 | install -m 644 ${UNPACKDIR}/ethers.sample ${D}${sysconfdir}/ethers |
40 | 40 | ||
41 | install -d ${D}${systemd_unitdir}/system | 41 | install -d ${D}${systemd_unitdir}/system |
42 | install -m 0644 ${WORKDIR}/rarpd.service ${D}${systemd_unitdir}/system/ | 42 | install -m 0644 ${UNPACKDIR}/rarpd.service ${D}${systemd_unitdir}/system/ |
43 | } | 43 | } |
44 | 44 | ||
45 | inherit systemd | 45 | inherit systemd |
diff --git a/meta-oe/recipes-extended/redis/redis_6.2.14.bb b/meta-oe/recipes-extended/redis/redis_6.2.14.bb index fa430ce40..2433abba5 100644 --- a/meta-oe/recipes-extended/redis/redis_6.2.14.bb +++ b/meta-oe/recipes-extended/redis/redis_6.2.14.bb | |||
@@ -43,14 +43,14 @@ do_install() { | |||
43 | export PREFIX=${D}/${prefix} | 43 | export PREFIX=${D}/${prefix} |
44 | oe_runmake install | 44 | oe_runmake install |
45 | install -d ${D}/${sysconfdir}/redis | 45 | install -d ${D}/${sysconfdir}/redis |
46 | install -m 0644 ${WORKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf | 46 | install -m 0644 ${UNPACKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf |
47 | install -d ${D}/${sysconfdir}/init.d | 47 | install -d ${D}/${sysconfdir}/init.d |
48 | install -m 0755 ${WORKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server | 48 | install -m 0755 ${UNPACKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server |
49 | install -d ${D}/var/lib/redis/ | 49 | install -d ${D}/var/lib/redis/ |
50 | chown redis.redis ${D}/var/lib/redis/ | 50 | chown redis.redis ${D}/var/lib/redis/ |
51 | 51 | ||
52 | install -d ${D}${systemd_system_unitdir} | 52 | install -d ${D}${systemd_system_unitdir} |
53 | install -m 0644 ${WORKDIR}/redis.service ${D}${systemd_system_unitdir} | 53 | install -m 0644 ${UNPACKDIR}/redis.service ${D}${systemd_system_unitdir} |
54 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_system_unitdir}/redis.service | 54 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_system_unitdir}/redis.service |
55 | 55 | ||
56 | if [ "${REDIS_ON_SYSTEMD}" = true ]; then | 56 | if [ "${REDIS_ON_SYSTEMD}" = true ]; then |
diff --git a/meta-oe/recipes-extended/redis/redis_7.2.4.bb b/meta-oe/recipes-extended/redis/redis_7.2.4.bb index 5d64e9ba7..f23eabe3b 100644 --- a/meta-oe/recipes-extended/redis/redis_7.2.4.bb +++ b/meta-oe/recipes-extended/redis/redis_7.2.4.bb | |||
@@ -46,14 +46,14 @@ do_install() { | |||
46 | export PREFIX=${D}/${prefix} | 46 | export PREFIX=${D}/${prefix} |
47 | oe_runmake install | 47 | oe_runmake install |
48 | install -d ${D}/${sysconfdir}/redis | 48 | install -d ${D}/${sysconfdir}/redis |
49 | install -m 0644 ${WORKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf | 49 | install -m 0644 ${UNPACKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf |
50 | install -d ${D}/${sysconfdir}/init.d | 50 | install -d ${D}/${sysconfdir}/init.d |
51 | install -m 0755 ${WORKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server | 51 | install -m 0755 ${UNPACKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server |
52 | install -d ${D}/var/lib/redis/ | 52 | install -d ${D}/var/lib/redis/ |
53 | chown redis.redis ${D}/var/lib/redis/ | 53 | chown redis.redis ${D}/var/lib/redis/ |
54 | 54 | ||
55 | install -d ${D}${systemd_system_unitdir} | 55 | install -d ${D}${systemd_system_unitdir} |
56 | install -m 0644 ${WORKDIR}/redis.service ${D}${systemd_system_unitdir} | 56 | install -m 0644 ${UNPACKDIR}/redis.service ${D}${systemd_system_unitdir} |
57 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_system_unitdir}/redis.service | 57 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${systemd_system_unitdir}/redis.service |
58 | 58 | ||
59 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 59 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog_8.2404.0.bb b/meta-oe/recipes-extended/rsyslog/rsyslog_8.2404.0.bb index 515298424..ac1645f67 100644 --- a/meta-oe/recipes-extended/rsyslog/rsyslog_8.2404.0.bb +++ b/meta-oe/recipes-extended/rsyslog/rsyslog_8.2404.0.bb | |||
@@ -137,9 +137,9 @@ do_install_ptest() { | |||
137 | do_install:append() { | 137 | do_install:append() { |
138 | install -d "${D}${sysconfdir}/init.d" | 138 | install -d "${D}${sysconfdir}/init.d" |
139 | install -d "${D}${sysconfdir}/logrotate.d" | 139 | install -d "${D}${sysconfdir}/logrotate.d" |
140 | install -m 755 ${WORKDIR}/initscript ${D}${sysconfdir}/init.d/syslog | 140 | install -m 755 ${UNPACKDIR}/initscript ${D}${sysconfdir}/init.d/syslog |
141 | install -m 644 ${WORKDIR}/rsyslog.conf ${D}${sysconfdir}/rsyslog.conf | 141 | install -m 644 ${UNPACKDIR}/rsyslog.conf ${D}${sysconfdir}/rsyslog.conf |
142 | install -m 644 ${WORKDIR}/rsyslog.logrotate ${D}${sysconfdir}/logrotate.d/logrotate.rsyslog | 142 | install -m 644 ${UNPACKDIR}/rsyslog.logrotate ${D}${sysconfdir}/logrotate.d/logrotate.rsyslog |
143 | sed -i -e "s#@BINDIR@#${bindir}#g" ${D}${sysconfdir}/logrotate.d/logrotate.rsyslog | 143 | sed -i -e "s#@BINDIR@#${bindir}#g" ${D}${sysconfdir}/logrotate.d/logrotate.rsyslog |
144 | 144 | ||
145 | if ${@bb.utils.contains('PACKAGECONFIG', 'imjournal', 'true', 'false', d)}; then | 145 | if ${@bb.utils.contains('PACKAGECONFIG', 'imjournal', 'true', 'false', d)}; then |
@@ -152,7 +152,7 @@ do_install:append() { | |||
152 | fi | 152 | fi |
153 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 153 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
154 | install -d ${D}${systemd_system_unitdir} | 154 | install -d ${D}${systemd_system_unitdir} |
155 | install -m 644 ${WORKDIR}/rsyslog.service ${D}${systemd_system_unitdir} | 155 | install -m 644 ${UNPACKDIR}/rsyslog.service ${D}${systemd_system_unitdir} |
156 | sed -i -e "s,@sbindir@,${sbindir},g" ${D}${systemd_system_unitdir}/rsyslog.service | 156 | sed -i -e "s,@sbindir@,${sbindir},g" ${D}${systemd_system_unitdir}/rsyslog.service |
157 | fi | 157 | fi |
158 | } | 158 | } |
diff --git a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb index 2a7cf2285..508939791 100644 --- a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb +++ b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb | |||
@@ -64,7 +64,7 @@ do_install() { | |||
64 | oe_runmake DESTDIR=${D} install | 64 | oe_runmake DESTDIR=${D} install |
65 | 65 | ||
66 | install -d ${D}${systemd_unitdir}/system | 66 | install -d ${D}${systemd_unitdir}/system |
67 | install -m 0644 ${WORKDIR}/sfcb.service ${D}${systemd_unitdir}/system/sblim-sfcb.service | 67 | install -m 0644 ${UNPACKDIR}/sfcb.service ${D}${systemd_unitdir}/system/sblim-sfcb.service |
68 | 68 | ||
69 | install -d ${D}${sysconfdir}/init.d | 69 | install -d ${D}${sysconfdir}/init.d |
70 | mv ${D}${sysconfdir}/init.d/sfcb ${D}${sysconfdir}/init.d/sblim-sfcb | 70 | mv ${D}${sysconfdir}/init.d/sfcb ${D}${sysconfdir}/init.d/sblim-sfcb |
diff --git a/meta-oe/recipes-extended/scsirastools/scsirastools_1.6.6.bb b/meta-oe/recipes-extended/scsirastools/scsirastools_1.6.6.bb index 4fefd5169..999d2b9e9 100644 --- a/meta-oe/recipes-extended/scsirastools/scsirastools_1.6.6.bb +++ b/meta-oe/recipes-extended/scsirastools/scsirastools_1.6.6.bb | |||
@@ -24,7 +24,7 @@ EXTRA_OEMAKE += "CC='${CC}' CFLAGS='${CFLAGS} -D_LARGEFILE64_SOURCE=1' sbindir=$ | |||
24 | 24 | ||
25 | do_configure:append() { | 25 | do_configure:append() { |
26 | oe_runmake -C mdadm.d mdadm-1.3.0 | 26 | oe_runmake -C mdadm.d mdadm-1.3.0 |
27 | patch -p0 < ${WORKDIR}/mdadm.patch | 27 | patch -p0 < ${UNPACKDIR}/mdadm.patch |
28 | } | 28 | } |
29 | INITSCRIPT_PACKAGES = "${PN}-diskmon ${PN}-raidmon" | 29 | INITSCRIPT_PACKAGES = "${PN}-diskmon ${PN}-raidmon" |
30 | INITSCRIPT_NAME:${PN}-diskmon = "sgdisk" | 30 | INITSCRIPT_NAME:${PN}-diskmon = "sgdisk" |
diff --git a/meta-oe/recipes-extended/smartmontools/smartmontools_7.4.bb b/meta-oe/recipes-extended/smartmontools/smartmontools_7.4.bb index f38714741..bd92b1629 100644 --- a/meta-oe/recipes-extended/smartmontools/smartmontools_7.4.bb +++ b/meta-oe/recipes-extended/smartmontools/smartmontools_7.4.bb | |||
@@ -33,13 +33,13 @@ SYSTEMD_AUTO_ENABLE = "disable" | |||
33 | do_install:append () { | 33 | do_install:append () { |
34 | #install the init.d/smartd | 34 | #install the init.d/smartd |
35 | install -d ${D}${sysconfdir}/init.d | 35 | install -d ${D}${sysconfdir}/init.d |
36 | install -p -m 0755 ${WORKDIR}/initd.smartd ${D}${sysconfdir}/init.d/smartd | 36 | install -p -m 0755 ${UNPACKDIR}/initd.smartd ${D}${sysconfdir}/init.d/smartd |
37 | install -d ${D}${sysconfdir}/default | 37 | install -d ${D}${sysconfdir}/default |
38 | install -p -m 0644 ${WORKDIR}/smartmontools.default ${D}${sysconfdir}/default/smartmontools | 38 | install -p -m 0644 ${UNPACKDIR}/smartmontools.default ${D}${sysconfdir}/default/smartmontools |
39 | 39 | ||
40 | #install systemd service file | 40 | #install systemd service file |
41 | install -d ${D}${systemd_unitdir}/system | 41 | install -d ${D}${systemd_unitdir}/system |
42 | install -m 0644 ${WORKDIR}/smartd.service ${D}${systemd_unitdir}/system | 42 | install -m 0644 ${UNPACKDIR}/smartd.service ${D}${systemd_unitdir}/system |
43 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \ | 43 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \ |
44 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | 44 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ |
45 | -e 's,@SBINDIR@,${sbindir},g' \ | 45 | -e 's,@SBINDIR@,${sbindir},g' \ |
diff --git a/meta-oe/recipes-extended/vlock/vlock_2.2.3.bb b/meta-oe/recipes-extended/vlock/vlock_2.2.3.bb index 455bda1d7..1a7592227 100644 --- a/meta-oe/recipes-extended/vlock/vlock_2.2.3.bb +++ b/meta-oe/recipes-extended/vlock/vlock_2.2.3.bb | |||
@@ -50,7 +50,7 @@ do_configure () { | |||
50 | do_install:append () { | 50 | do_install:append () { |
51 | if [ ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'yes', '', d)} = yes ]; then | 51 | if [ ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'yes', '', d)} = yes ]; then |
52 | install -d -m 0755 ${D}/${sysconfdir}/pam.d | 52 | install -d -m 0755 ${D}/${sysconfdir}/pam.d |
53 | install -m 0644 ${WORKDIR}/vlock_pam ${D}${sysconfdir}/pam.d/vlock | 53 | install -m 0644 ${UNPACKDIR}/vlock_pam ${D}${sysconfdir}/pam.d/vlock |
54 | fi | 54 | fi |
55 | } | 55 | } |
56 | 56 | ||
diff --git a/meta-oe/recipes-extended/zram/zram_0.2.bb b/meta-oe/recipes-extended/zram/zram_0.2.bb index b4b3a27b2..800dd6b7c 100644 --- a/meta-oe/recipes-extended/zram/zram_0.2.bb +++ b/meta-oe/recipes-extended/zram/zram_0.2.bb | |||
@@ -21,17 +21,17 @@ do_install () { | |||
21 | # Install systemd related configuration file | 21 | # Install systemd related configuration file |
22 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 22 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
23 | install -d ${D}${sysconfdir}/init.d | 23 | install -d ${D}${sysconfdir}/init.d |
24 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/zram | 24 | install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/zram |
25 | fi | 25 | fi |
26 | 26 | ||
27 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 27 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
28 | install -d ${D}${libexecdir} | 28 | install -d ${D}${libexecdir} |
29 | install -m 0755 ${WORKDIR}/zram-swap-init ${D}${libexecdir} | 29 | install -m 0755 ${UNPACKDIR}/zram-swap-init ${D}${libexecdir} |
30 | install -m 0755 ${WORKDIR}/zram-swap-deinit ${D}${libexecdir} | 30 | install -m 0755 ${UNPACKDIR}/zram-swap-deinit ${D}${libexecdir} |
31 | install -d ${D}${systemd_unitdir}/system | 31 | install -d ${D}${systemd_unitdir}/system |
32 | install -m 0644 ${WORKDIR}/zram-swap.service ${D}${systemd_unitdir}/system/zram-swap.service | 32 | install -m 0644 ${UNPACKDIR}/zram-swap.service ${D}${systemd_unitdir}/system/zram-swap.service |
33 | sed -i -e "s,@LIBEXECDIR@,${libexecdir},g" ${D}${systemd_unitdir}/system/zram-swap.service | 33 | sed -i -e "s,@LIBEXECDIR@,${libexecdir},g" ${D}${systemd_unitdir}/system/zram-swap.service |
34 | install -m 0644 ${WORKDIR}/dev-zram0.swap ${D}${systemd_unitdir}/system/dev-zram0.swap | 34 | install -m 0644 ${UNPACKDIR}/dev-zram0.swap ${D}${systemd_unitdir}/system/dev-zram0.swap |
35 | fi | 35 | fi |
36 | } | 36 | } |
37 | 37 | ||
diff --git a/meta-oe/recipes-gnome/gmime/gmime_3.2.13.bb b/meta-oe/recipes-gnome/gmime/gmime_3.2.13.bb index f51451d97..54b37912b 100644 --- a/meta-oe/recipes-gnome/gmime/gmime_3.2.13.bb +++ b/meta-oe/recipes-gnome/gmime/gmime_3.2.13.bb | |||
@@ -19,5 +19,5 @@ export ac_cv_have_iconv_detect_h="yes" | |||
19 | export ac_cv_sys_file_offset_bits="64" | 19 | export ac_cv_sys_file_offset_bits="64" |
20 | 20 | ||
21 | do_configure:append () { | 21 | do_configure:append () { |
22 | cp ${WORKDIR}/iconv-detect.h ${S} | 22 | cp ${UNPACKDIR}/iconv-detect.h ${S} |
23 | } | 23 | } |
diff --git a/meta-oe/recipes-gnome/gnome-doc-utils-stub/gnome-doc-utils-stub_1.0.bb b/meta-oe/recipes-gnome/gnome-doc-utils-stub/gnome-doc-utils-stub_1.0.bb index db55f2239..1cfd9c1cb 100644 --- a/meta-oe/recipes-gnome/gnome-doc-utils-stub/gnome-doc-utils-stub_1.0.bb +++ b/meta-oe/recipes-gnome/gnome-doc-utils-stub/gnome-doc-utils-stub_1.0.bb | |||
@@ -11,7 +11,7 @@ PROVIDES = "gnome-doc-utils" | |||
11 | 11 | ||
12 | do_install:append() { | 12 | do_install:append() { |
13 | install -d ${D}${datadir}/aclocal/ | 13 | install -d ${D}${datadir}/aclocal/ |
14 | install ${WORKDIR}/gnome-doc-utils.m4 ${D}${datadir}/aclocal/ | 14 | install ${UNPACKDIR}/gnome-doc-utils.m4 ${D}${datadir}/aclocal/ |
15 | } | 15 | } |
16 | 16 | ||
17 | FILES:${PN} += "${datadir}" | 17 | FILES:${PN} += "${datadir}" |
diff --git a/meta-oe/recipes-graphics/glm/glm_0.9.9.8.bb b/meta-oe/recipes-graphics/glm/glm_0.9.9.8.bb index dd520b245..e313d7a19 100644 --- a/meta-oe/recipes-graphics/glm/glm_0.9.9.8.bb +++ b/meta-oe/recipes-graphics/glm/glm_0.9.9.8.bb | |||
@@ -29,10 +29,10 @@ do_install() { | |||
29 | cp -R --no-dereference --preserve=mode,links ${S}/glm ${D}${includedir} | 29 | cp -R --no-dereference --preserve=mode,links ${S}/glm ${D}${includedir} |
30 | cp -R --no-dereference --preserve=mode,links ${S}/doc ${D}${docdir}/glm | 30 | cp -R --no-dereference --preserve=mode,links ${S}/doc ${D}${docdir}/glm |
31 | rm ${D}${includedir}/glm/CMakeLists.txt | 31 | rm ${D}${includedir}/glm/CMakeLists.txt |
32 | sed "s/@VERSION@/${PV}/" ${WORKDIR}/glmConfigVersion.cmake.in > ${D}${libdir}/cmake/glm/glmConfigVersion.cmake | 32 | sed "s/@VERSION@/${PV}/" ${UNPACKDIR}/glmConfigVersion.cmake.in > ${D}${libdir}/cmake/glm/glmConfigVersion.cmake |
33 | sed "s/@VERSION@/${PV}/" ${WORKDIR}/glmConfig.cmake.in > ${D}${libdir}/cmake/glm/glmConfig.cmake | 33 | sed "s/@VERSION@/${PV}/" ${UNPACKDIR}/glmConfig.cmake.in > ${D}${libdir}/cmake/glm/glmConfig.cmake |
34 | sed "s/@VERSION@/${PV}/" ${WORKDIR}/glm.pc.in > ${D}${libdir}/pkgconfig/glm.pc | 34 | sed "s/@VERSION@/${PV}/" ${UNPACKDIR}/glm.pc.in > ${D}${libdir}/pkgconfig/glm.pc |
35 | install -Dm644 ${WORKDIR}/glmTargets.cmake ${D}${libdir}/cmake/glm/glmTargets.cmake | 35 | install -Dm644 ${UNPACKDIR}/glmTargets.cmake ${D}${libdir}/cmake/glm/glmTargets.cmake |
36 | 36 | ||
37 | } | 37 | } |
38 | 38 | ||
diff --git a/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.31.bb b/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.31.bb index cc42b6a9c..1d0b37826 100644 --- a/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.31.bb +++ b/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.31.bb | |||
@@ -38,7 +38,7 @@ do_configure:append() { | |||
38 | 38 | ||
39 | do_install:append() { | 39 | do_install:append() { |
40 | install -d ${D}${sysconfdir}/udev/rules.d/ | 40 | install -d ${D}${sysconfdir}/udev/rules.d/ |
41 | install -m 0644 ${WORKDIR}/*.rules ${D}${sysconfdir}/udev/rules.d/ | 41 | install -m 0644 ${UNPACKDIR}/*.rules ${D}${sysconfdir}/udev/rules.d/ |
42 | } | 42 | } |
43 | 43 | ||
44 | PACKAGES =+ "libgphotoport libgphoto2-camlibs" | 44 | PACKAGES =+ "libgphotoport libgphoto2-camlibs" |
diff --git a/meta-oe/recipes-graphics/graphviz/graphviz_8.1.0.bb b/meta-oe/recipes-graphics/graphviz/graphviz_8.1.0.bb index 2700142e5..38d738310 100644 --- a/meta-oe/recipes-graphics/graphviz/graphviz_8.1.0.bb +++ b/meta-oe/recipes-graphics/graphviz/graphviz_8.1.0.bb | |||
@@ -67,7 +67,7 @@ do_configure:prepend() { | |||
67 | do_install:append:class-nativesdk() { | 67 | do_install:append:class-nativesdk() { |
68 | # graphviz-setup.sh must be executed at SDK installation | 68 | # graphviz-setup.sh must be executed at SDK installation |
69 | install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d | 69 | install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d |
70 | install -m 0755 ${WORKDIR}/graphviz-setup.sh ${D}${SDKPATHNATIVE}/post-relocate-setup.d | 70 | install -m 0755 ${UNPACKDIR}/graphviz-setup.sh ${D}${SDKPATHNATIVE}/post-relocate-setup.d |
71 | } | 71 | } |
72 | FILES:${PN}:class-nativesdk += "${SDKPATHNATIVE}" | 72 | FILES:${PN}:class-nativesdk += "${SDKPATHNATIVE}" |
73 | 73 | ||
diff --git a/meta-oe/recipes-graphics/gtkperf/gtkperf_0.40.bb b/meta-oe/recipes-graphics/gtkperf/gtkperf_0.40.bb index a70d31fed..30964a1b9 100644 --- a/meta-oe/recipes-graphics/gtkperf/gtkperf_0.40.bb +++ b/meta-oe/recipes-graphics/gtkperf/gtkperf_0.40.bb | |||
@@ -24,7 +24,7 @@ REQUIRED_DISTRO_FEATURES = "x11" | |||
24 | 24 | ||
25 | do_configure:prepend () { | 25 | do_configure:prepend () { |
26 | rm -f ${S}/m4/init.m4 | 26 | rm -f ${S}/m4/init.m4 |
27 | cp -f ${WORKDIR}/Makevars ${S}/po/ | 27 | cp -f ${UNPACKDIR}/Makevars ${S}/po/ |
28 | } | 28 | } |
29 | 29 | ||
30 | do_install:append () { | 30 | do_install:append () { |
diff --git a/meta-oe/recipes-graphics/lxdm/lxdm_0.5.3.bb b/meta-oe/recipes-graphics/lxdm/lxdm_0.5.3.bb index adf9cb597..ae4525829 100644 --- a/meta-oe/recipes-graphics/lxdm/lxdm_0.5.3.bb +++ b/meta-oe/recipes-graphics/lxdm/lxdm_0.5.3.bb | |||
@@ -61,12 +61,12 @@ do_compile:append() { | |||
61 | 61 | ||
62 | do_install:append() { | 62 | do_install:append() { |
63 | install -d ${D}${localstatedir}/lib/lxdm | 63 | install -d ${D}${localstatedir}/lib/lxdm |
64 | install -m 644 ${WORKDIR}/lxdm.conf ${D}${localstatedir}/lib/lxdm | 64 | install -m 644 ${UNPACKDIR}/lxdm.conf ${D}${localstatedir}/lib/lxdm |
65 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then | 65 | if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then |
66 | # ArchLinux version of pam config has the following advantages: | 66 | # ArchLinux version of pam config has the following advantages: |
67 | # * simple setup of passwordless login | 67 | # * simple setup of passwordless login |
68 | # * in XFCE powerdown/restart enabled in logoff dialog | 68 | # * in XFCE powerdown/restart enabled in logoff dialog |
69 | install -m 644 ${WORKDIR}/${@bb.utils.contains("DISTRO_TYPE", "debug", "lxdm-pam-debug", "lxdm-pam",d)} ${D}${sysconfdir}/pam.d/lxdm | 69 | install -m 644 ${UNPACKDIR}/${@bb.utils.contains("DISTRO_TYPE", "debug", "lxdm-pam-debug", "lxdm-pam",d)} ${D}${sysconfdir}/pam.d/lxdm |
70 | fi | 70 | fi |
71 | } | 71 | } |
72 | 72 | ||
diff --git a/meta-oe/recipes-graphics/tigervnc/tigervnc_1.11.0.bb b/meta-oe/recipes-graphics/tigervnc/tigervnc_1.11.0.bb index 5cde7c9fb..668ca79dd 100644 --- a/meta-oe/recipes-graphics/tigervnc/tigervnc_1.11.0.bb +++ b/meta-oe/recipes-graphics/tigervnc/tigervnc_1.11.0.bb | |||
@@ -27,7 +27,7 @@ SRC_URI = "git://github.com/TigerVNC/tigervnc.git;branch=1.11-branch;protocol=ht | |||
27 | XORG_PN ?= "xorg-server" | 27 | XORG_PN ?= "xorg-server" |
28 | XORG_PV ?= "1.20.6" | 28 | XORG_PV ?= "1.20.6" |
29 | SRC_URI += "${XORG_MIRROR}/individual/xserver/${XORG_PN}-${XORG_PV}.tar.bz2;name=xorg" | 29 | SRC_URI += "${XORG_MIRROR}/individual/xserver/${XORG_PN}-${XORG_PV}.tar.bz2;name=xorg" |
30 | XORG_S = "${WORKDIR}/${XORG_PN}-${XORG_PV}" | 30 | XORG_S = "${UNPACKDIR}/${XORG_PN}-${XORG_PV}" |
31 | SRC_URI[xorg.md5sum] = "a98170084f2c8fed480d2ff601f8a14b" | 31 | SRC_URI[xorg.md5sum] = "a98170084f2c8fed480d2ff601f8a14b" |
32 | SRC_URI[xorg.sha256sum] = "6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1" | 32 | SRC_URI[xorg.sha256sum] = "6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1" |
33 | 33 | ||
diff --git a/meta-oe/recipes-graphics/tslib/tslib_1.22.bb b/meta-oe/recipes-graphics/tslib/tslib_1.22.bb index 01da03a47..cc7e44eff 100644 --- a/meta-oe/recipes-graphics/tslib/tslib_1.22.bb +++ b/meta-oe/recipes-graphics/tslib/tslib_1.22.bb | |||
@@ -53,12 +53,12 @@ PACKAGECONFIG[one-wire-ts-input] = "--enable-one-wire-ts-input,--disable-one-wir | |||
53 | PACKAGECONFIG[debug] = "--enable-debug,--disable-debug" | 53 | PACKAGECONFIG[debug] = "--enable-debug,--disable-debug" |
54 | 54 | ||
55 | do_install:prepend() { | 55 | do_install:prepend() { |
56 | install -m 0644 ${WORKDIR}/ts.conf ${S}/etc/ts.conf | 56 | install -m 0644 ${UNPACKDIR}/ts.conf ${S}/etc/ts.conf |
57 | } | 57 | } |
58 | 58 | ||
59 | do_install:append() { | 59 | do_install:append() { |
60 | install -d ${D}${sysconfdir}/profile.d/ | 60 | install -d ${D}${sysconfdir}/profile.d/ |
61 | install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/ | 61 | install -m 0755 ${UNPACKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/ |
62 | } | 62 | } |
63 | 63 | ||
64 | RPROVIDES:tslib-conf = "libts-0.0-conf" | 64 | RPROVIDES:tslib-conf = "libts-0.0-conf" |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-code-pro-fonts_2.030_1.050.bb b/meta-oe/recipes-graphics/ttf-fonts/source-code-pro-fonts_2.030_1.050.bb index 3402d0d46..e7ec00405 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-code-pro-fonts_2.030_1.050.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-code-pro-fonts_2.030_1.050.bb | |||
@@ -16,7 +16,7 @@ S = "${WORKDIR}/source-code-pro-2.030R-ro-1.050R-it" | |||
16 | 16 | ||
17 | do_install() { | 17 | do_install() { |
18 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 18 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
19 | install -m 0644 ${WORKDIR}/44-source-code-pro-fonts-fontconfig.conf ${D}${sysconfdir}/fonts/conf.d/ | 19 | install -m 0644 ${UNPACKDIR}/44-source-code-pro-fonts-fontconfig.conf ${D}${sysconfdir}/fonts/conf.d/ |
20 | 20 | ||
21 | install -d ${D}${datadir}/fonts/truetype/ | 21 | install -d ${D}${datadir}/fonts/truetype/ |
22 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 22 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-cn-fonts_2.004.bb b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-cn-fonts_2.004.bb index 391d46557..fe00bf6c0 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-cn-fonts_2.004.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-cn-fonts_2.004.bb | |||
@@ -18,7 +18,7 @@ SRC_URI[sha256sum] = "6841fc13f1c0d255cfeb33d2a2c68d24bbebd94ae2c070347a2b2b200a | |||
18 | 18 | ||
19 | do_install() { | 19 | do_install() { |
20 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 20 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
21 | install -m 0644 ${WORKDIR}/44-source-han-sans-cn.conf ${D}${sysconfdir}/fonts/conf.d/ | 21 | install -m 0644 ${UNPACKDIR}/44-source-han-sans-cn.conf ${D}${sysconfdir}/fonts/conf.d/ |
22 | 22 | ||
23 | install -d ${D}${datadir}/fonts/truetype/ | 23 | install -d ${D}${datadir}/fonts/truetype/ |
24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-jp-fonts_2.004.bb b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-jp-fonts_2.004.bb index f940478a8..24f41174b 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-jp-fonts_2.004.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-jp-fonts_2.004.bb | |||
@@ -18,7 +18,7 @@ SRC_URI[sha256sum] = "1ae9f62ad620d686c4a049ce25cf54e3afd8fefc954a678c644cf98027 | |||
18 | 18 | ||
19 | do_install() { | 19 | do_install() { |
20 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 20 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
21 | install -m 0644 ${WORKDIR}/44-source-han-sans-jp.conf ${D}${sysconfdir}/fonts/conf.d/ | 21 | install -m 0644 ${UNPACKDIR}/44-source-han-sans-jp.conf ${D}${sysconfdir}/fonts/conf.d/ |
22 | 22 | ||
23 | install -d ${D}${datadir}/fonts/truetype/ | 23 | install -d ${D}${datadir}/fonts/truetype/ |
24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-kr-fonts_2.004.bb b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-kr-fonts_2.004.bb index f536d1b61..42e7b3dc3 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-kr-fonts_2.004.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-kr-fonts_2.004.bb | |||
@@ -15,10 +15,11 @@ SRC_URI = " \ | |||
15 | file://44-source-han-sans-kr.conf \ | 15 | file://44-source-han-sans-kr.conf \ |
16 | " | 16 | " |
17 | SRC_URI[sha256sum] = "02fe28a48c6381c49d61c27a1b173c77f0e6f2b9f2b68e79f076f10a6a8f4bfe" | 17 | SRC_URI[sha256sum] = "02fe28a48c6381c49d61c27a1b173c77f0e6f2b9f2b68e79f076f10a6a8f4bfe" |
18 | S = "${UNPACKDIR}/branches" | ||
18 | 19 | ||
19 | do_install() { | 20 | do_install() { |
20 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 21 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
21 | install -m 0644 ${WORKDIR}/44-source-han-sans-kr.conf ${D}${sysconfdir}/fonts/conf.d/ | 22 | install -m 0644 ${UNPACKDIR}/44-source-han-sans-kr.conf ${D}${sysconfdir}/fonts/conf.d/ |
22 | 23 | ||
23 | install -d ${D}${datadir}/fonts/truetype/ | 24 | install -d ${D}${datadir}/fonts/truetype/ |
24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 25 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-tw-fonts_2.004.bb b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-tw-fonts_2.004.bb index 0a4aff5e3..f99e2fd39 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-tw-fonts_2.004.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-tw-fonts_2.004.bb | |||
@@ -15,10 +15,11 @@ SRC_URI = " \ | |||
15 | file://44-source-han-sans-tw.conf \ | 15 | file://44-source-han-sans-tw.conf \ |
16 | " | 16 | " |
17 | SRC_URI[sha256sum] = "11d78c8fbc1a4bb04a453cdd65c99db8d41ec5cd6ba6d68c8638e6ba170de806" | 17 | SRC_URI[sha256sum] = "11d78c8fbc1a4bb04a453cdd65c99db8d41ec5cd6ba6d68c8638e6ba170de806" |
18 | S = "${UNPACKDIR}/SourceHanSansTW" | ||
18 | 19 | ||
19 | do_install() { | 20 | do_install() { |
20 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 21 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
21 | install -m 0644 ${WORKDIR}/44-source-han-sans-tw.conf ${D}${sysconfdir}/fonts/conf.d/ | 22 | install -m 0644 ${UNPACKDIR}/44-source-han-sans-tw.conf ${D}${sysconfdir}/fonts/conf.d/ |
22 | 23 | ||
23 | install -d ${D}${datadir}/fonts/truetype/ | 24 | install -d ${D}${datadir}/fonts/truetype/ |
24 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | 25 | find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.37.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.37.bb index 43a387b81..54aeb318a 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.37.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu_2.37.bb | |||
@@ -23,7 +23,7 @@ UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/dejavu/files/dejavu/" | |||
23 | 23 | ||
24 | do_install:append () { | 24 | do_install:append () { |
25 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 25 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
26 | install -m 0644 ${WORKDIR}/30-dejavu-aliases.conf ${D}${sysconfdir}/fonts/conf.d/ | 26 | install -m 0644 ${UNPACKDIR}/30-dejavu-aliases.conf ${D}${sysconfdir}/fonts/conf.d/ |
27 | } | 27 | } |
28 | 28 | ||
29 | PACKAGES = "\ | 29 | PACKAGES = "\ |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-inconsolata_20100526.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-inconsolata_20100526.bb index 2ae1d619c..5a8fe4c32 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-inconsolata_20100526.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-inconsolata_20100526.bb | |||
@@ -3,23 +3,23 @@ require ttf.inc | |||
3 | SUMMARY = "Inconsolata font - TTF Version" | 3 | SUMMARY = "Inconsolata font - TTF Version" |
4 | HOMEPAGE = "http://www.levien.com/type/myfonts/inconsolata.html" | 4 | HOMEPAGE = "http://www.levien.com/type/myfonts/inconsolata.html" |
5 | LICENSE = "OFL-1.1" | 5 | LICENSE = "OFL-1.1" |
6 | LIC_FILES_CHKSUM = "file://../OFL.txt;md5=969851e3a70122069a4d9ee61dd5a2ed" | 6 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/OFL.txt;md5=969851e3a70122069a4d9ee61dd5a2ed" |
7 | 7 | ||
8 | SRC_URI = "http://levien.com/type/myfonts/Inconsolata.otf \ | 8 | SRC_URI = "http://levien.com/type/myfonts/Inconsolata.otf \ |
9 | file://OFL.txt" | 9 | file://OFL.txt" |
10 | 10 | ||
11 | S = "${WORKDIR}/ttf-inconsolata-${PV}" | 11 | S = "${UNPACKDIR}/ttf-inconsolata-${PV}" |
12 | 12 | ||
13 | FILES:${PN} = "${datadir}/fonts/truetype/Inconsolata.ttf \ | 13 | FILES:${PN} = "${datadir}/fonts/truetype/Inconsolata.ttf \ |
14 | ${datadir}/doc/ttf-inconsolata/*" | 14 | ${datadir}/doc/ttf-inconsolata/*" |
15 | 15 | ||
16 | do_configure() { | 16 | do_configure() { |
17 | cp -fr ${WORKDIR}/Inconsolata.otf ${S}/Inconsolata.ttf | 17 | cp -fr ${UNPACKDIR}/Inconsolata.otf ${S}/Inconsolata.ttf |
18 | } | 18 | } |
19 | 19 | ||
20 | do_install:append() { | 20 | do_install:append() { |
21 | install -d ${D}${datadir}/doc/ttf-inconsolata/ | 21 | install -d ${D}${datadir}/doc/ttf-inconsolata/ |
22 | install -m 0644 ${WORKDIR}/OFL.txt ${D}${datadir}/doc/ttf-inconsolata/ | 22 | install -m 0644 ${UNPACKDIR}/OFL.txt ${D}${datadir}/doc/ttf-inconsolata/ |
23 | } | 23 | } |
24 | 24 | ||
25 | SRC_URI[md5sum] = "0fbe014c1f0fb5e3c71140ff0dc63edf" | 25 | SRC_URI[md5sum] = "0fbe014c1f0fb5e3c71140ff0dc63edf" |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb index f386d6ec5..a0fb7b6a7 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb | |||
@@ -22,7 +22,7 @@ do_install:append () { | |||
22 | install -d ${D}${datadir}/fonts/TTF/ | 22 | install -d ${D}${datadir}/fonts/TTF/ |
23 | install -d ${D}${sysconfdir}/fonts/conf.d/ | 23 | install -d ${D}${sysconfdir}/fonts/conf.d/ |
24 | install -m 0644 LiberationSansNarrow*.ttf ${D}${datadir}/fonts/TTF/ | 24 | install -m 0644 LiberationSansNarrow*.ttf ${D}${datadir}/fonts/TTF/ |
25 | install -D -m 0644 ${WORKDIR}/30-0-liberation-sans-narrow.conf ${D}${sysconfdir}/conf.avail/30-${PN}-sans.conf | 25 | install -D -m 0644 ${UNPACKDIR}/30-0-liberation-sans-narrow.conf ${D}${sysconfdir}/conf.avail/30-${PN}-sans.conf |
26 | install -D -m 0644 ${S}/License.txt ${D}${datadir}/licenses/${PN}/LICENSE | 26 | install -D -m 0644 ${S}/License.txt ${D}${datadir}/licenses/${PN}/LICENSE |
27 | # normal liberation fonts come from ttf-liberation recipe so delete here | 27 | # normal liberation fonts come from ttf-liberation recipe so delete here |
28 | rm -rf ${D}${datadir}/fonts/truetype | 28 | rm -rf ${D}${datadir}/fonts/truetype |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-pt-sans_1.1.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-pt-sans_1.1.bb index e9aa5721f..fce76418f 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-pt-sans_1.1.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-pt-sans_1.1.bb | |||
@@ -5,7 +5,7 @@ HOMEPAGE = "http://www.paratype.com/public/" | |||
5 | SECTION = "x11/fonts" | 5 | SECTION = "x11/fonts" |
6 | 6 | ||
7 | LICENSE = "ParaTypeFFL-1.3" | 7 | LICENSE = "ParaTypeFFL-1.3" |
8 | LIC_FILES_CHKSUM = "file://../PT%20Free%20Font%20License_eng.txt;md5=d720f3a281ed81c3f4cfc465e11b1d0d" | 8 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/PT%20Free%20Font%20License_eng.txt;md5=d720f3a281ed81c3f4cfc465e11b1d0d" |
9 | 9 | ||
10 | inherit allarch fontcache | 10 | inherit allarch fontcache |
11 | 11 | ||
@@ -16,9 +16,10 @@ SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/paratype-pt-sans-fonts/PTSans | |||
16 | SRC_URI[md5sum] = "c3f5a0e20a75cf628387510a720924a7" | 16 | SRC_URI[md5sum] = "c3f5a0e20a75cf628387510a720924a7" |
17 | SRC_URI[sha256sum] = "0164f824e03c32c99e8a225853ec168893a04a09ade132e93a674e85ae033b2e" | 17 | SRC_URI[sha256sum] = "0164f824e03c32c99e8a225853ec168893a04a09ade132e93a674e85ae033b2e" |
18 | 18 | ||
19 | S = "${UNPACKDIR}" | ||
20 | |||
19 | do_install () { | 21 | do_install () { |
20 | install -d ${D}${datadir}/fonts/X11/TTF/ | 22 | install -d ${D}${datadir}/fonts/X11/TTF/ |
21 | cd .. | ||
22 | for i in *.ttf; do | 23 | for i in *.ttf; do |
23 | install -m 0644 $i ${D}${prefix}/share/fonts/X11/TTF/${i} | 24 | install -m 0644 $i ${D}${prefix}/share/fonts/X11/TTF/${i} |
24 | done | 25 | done |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-tlwg_0.6.1.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-tlwg_0.6.1.bb index 461e3def7..0131a62ee 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-tlwg_0.6.1.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-tlwg_0.6.1.bb | |||
@@ -3,7 +3,7 @@ require ttf.inc | |||
3 | SUMMARY = "Thai Linux Working Group Fonts" | 3 | SUMMARY = "Thai Linux Working Group Fonts" |
4 | HOMEPAGE = "http://linux.thai.net/projects/fonts-tlwg" | 4 | HOMEPAGE = "http://linux.thai.net/projects/fonts-tlwg" |
5 | LICENSE = "GPL-2.0-only & TLWG" | 5 | LICENSE = "GPL-2.0-only & TLWG" |
6 | LIC_FILES_CHKSUM = "file://../fonts-tlwg-${PV}/COPYING;md5=3d20cd7eadf4afd5460c0adb32e387fd" | 6 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/fonts-tlwg-${PV}/COPYING;md5=3d20cd7eadf4afd5460c0adb32e387fd" |
7 | 7 | ||
8 | SRC_URI = "http://linux.thai.net/pub/ThaiLinux/software/fonts-tlwg/fonts-tlwg-${PV}.tar.xz;name=source \ | 8 | SRC_URI = "http://linux.thai.net/pub/ThaiLinux/software/fonts-tlwg/fonts-tlwg-${PV}.tar.xz;name=source \ |
9 | http://linux.thai.net/pub/ThaiLinux/software/ttf-tlwg/ttf-tlwg-${PV}.tar.xz;name=ttf" | 9 | http://linux.thai.net/pub/ThaiLinux/software/ttf-tlwg/ttf-tlwg-${PV}.tar.xz;name=ttf" |
diff --git a/meta-oe/recipes-graphics/xorg-driver/xf86-input-tslib_1.1.1.bb b/meta-oe/recipes-graphics/xorg-driver/xf86-input-tslib_1.1.1.bb index 9f445ff26..8c26bf798 100644 --- a/meta-oe/recipes-graphics/xorg-driver/xf86-input-tslib_1.1.1.bb +++ b/meta-oe/recipes-graphics/xorg-driver/xf86-input-tslib_1.1.1.bb | |||
@@ -14,7 +14,7 @@ SRC_URI[sha256sum] = "b596168c4ed2f1023212dc828ce49cbe82a0bbd1aac3c5e2958154d788 | |||
14 | 14 | ||
15 | do_install:append() { | 15 | do_install:append() { |
16 | install -d ${D}${nonarch_base_libdir}/udev/rules.d | 16 | install -d ${D}${nonarch_base_libdir}/udev/rules.d |
17 | install -m 0644 ${WORKDIR}/99-xf86-input-tslib.rules ${D}${nonarch_base_libdir}/udev/rules.d/ | 17 | install -m 0644 ${UNPACKDIR}/99-xf86-input-tslib.rules ${D}${nonarch_base_libdir}/udev/rules.d/ |
18 | } | 18 | } |
19 | 19 | ||
20 | FILES:${PN} += "${nonarch_base_libdir}/udev" | 20 | FILES:${PN} += "${nonarch_base_libdir}/udev" |
diff --git a/meta-oe/recipes-graphics/xscreensaver/xscreensaver_6.04.bb b/meta-oe/recipes-graphics/xscreensaver/xscreensaver_6.04.bb index dc909ed78..c06c9e96b 100644 --- a/meta-oe/recipes-graphics/xscreensaver/xscreensaver_6.04.bb +++ b/meta-oe/recipes-graphics/xscreensaver/xscreensaver_6.04.bb | |||
@@ -38,7 +38,7 @@ CONFIGUREOPTS:remove = "--disable-silent-rules --disable-dependency-tracking ${@ | |||
38 | EXTRA_OECONF:remove = "--disable-static" | 38 | EXTRA_OECONF:remove = "--disable-static" |
39 | 39 | ||
40 | do_install:append() { | 40 | do_install:append() { |
41 | install -D ${WORKDIR}/xscreensaver.service ${D}${systemd_unitdir}/system/xscreensaver.service | 41 | install -D ${UNPACKDIR}/xscreensaver.service ${D}${systemd_unitdir}/system/xscreensaver.service |
42 | for f in xscreensaver-getimage-file xscreensaver-getimage-video webcollage xscreensaver-text vidwhacker | 42 | for f in xscreensaver-getimage-file xscreensaver-getimage-video webcollage xscreensaver-text vidwhacker |
43 | do | 43 | do |
44 | sed -i -e "s|${STAGING_BINDIR_NATIVE}/perl-native/perl|/usr/bin/perl|g" ${D}/${libexecdir}/${PN}/$f | 44 | sed -i -e "s|${STAGING_BINDIR_NATIVE}/perl-native/perl|/usr/bin/perl|g" ${D}/${libexecdir}/${PN}/$f |
diff --git a/meta-oe/recipes-kernel/ipmitool/ipmitool_1.8.19.bb b/meta-oe/recipes-kernel/ipmitool/ipmitool_1.8.19.bb index 0f1c8846b..7a15d16bc 100644 --- a/meta-oe/recipes-kernel/ipmitool/ipmitool_1.8.19.bb +++ b/meta-oe/recipes-kernel/ipmitool/ipmitool_1.8.19.bb | |||
@@ -37,8 +37,8 @@ S = "${WORKDIR}/git" | |||
37 | inherit autotools pkgconfig | 37 | inherit autotools pkgconfig |
38 | 38 | ||
39 | do_install:append() { | 39 | do_install:append() { |
40 | if [ -e ${WORKDIR}/iana-enterprise-numbers ]; then | 40 | if [ -e ${UNPACKDIR}/iana-enterprise-numbers ]; then |
41 | install -Dm 0755 ${WORKDIR}/iana-enterprise-numbers ${D}${datadir}/misc/enterprise-numbers | 41 | install -Dm 0755 ${UNPACKDIR}/iana-enterprise-numbers ${D}${datadir}/misc/enterprise-numbers |
42 | fi | 42 | fi |
43 | } | 43 | } |
44 | 44 | ||
diff --git a/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb b/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb index 01f185adb..3f57ef3bf 100644 --- a/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb +++ b/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb | |||
@@ -2,7 +2,7 @@ SUMMARY = "Kernel selftest for Linux" | |||
2 | DESCRIPTION = "Kernel selftest for Linux" | 2 | DESCRIPTION = "Kernel selftest for Linux" |
3 | LICENSE = "GPL-2.0-only" | 3 | LICENSE = "GPL-2.0-only" |
4 | 4 | ||
5 | LIC_FILES_CHKSUM = "file://../COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" | 5 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" |
6 | 6 | ||
7 | DEPENDS = "rsync-native llvm-native" | 7 | DEPENDS = "rsync-native llvm-native" |
8 | 8 | ||
@@ -120,7 +120,7 @@ do_install() { | |||
120 | } | 120 | } |
121 | 121 | ||
122 | do_configure() { | 122 | do_configure() { |
123 | install -D -m 0644 ${WORKDIR}/COPYING ${S}/COPYING | 123 | install -D -m 0644 ${UNPACKDIR}/COPYING ${S}/COPYING |
124 | } | 124 | } |
125 | 125 | ||
126 | do_patch[prefuncs] += "copy_kselftest_source_from_kernel remove_unrelated" | 126 | do_patch[prefuncs] += "copy_kselftest_source_from_kernel remove_unrelated" |
diff --git a/meta-oe/recipes-kernel/linux/linux.inc b/meta-oe/recipes-kernel/linux/linux.inc index b4b066122..79a916d46 100644 --- a/meta-oe/recipes-kernel/linux/linux.inc +++ b/meta-oe/recipes-kernel/linux/linux.inc | |||
@@ -41,8 +41,8 @@ do_configure:prepend() { | |||
41 | # | 41 | # |
42 | # logo support, if you supply logo_linux_clut224.ppm in SRC_URI, then it's going to be used | 42 | # logo support, if you supply logo_linux_clut224.ppm in SRC_URI, then it's going to be used |
43 | # | 43 | # |
44 | if [ -e ${WORKDIR}/logo_linux_clut224.ppm ]; then | 44 | if [ -e ${UNPACKDIR}/logo_linux_clut224.ppm ]; then |
45 | install -m 0644 ${WORKDIR}/logo_linux_clut224.ppm drivers/video/logo/logo_linux_clut224.ppm | 45 | install -m 0644 ${UNPACKDIR}/logo_linux_clut224.ppm drivers/video/logo/logo_linux_clut224.ppm |
46 | kernel_conf_variable LOGO y | 46 | kernel_conf_variable LOGO y |
47 | kernel_conf_variable LOGO_LINUX_CLUT224 y | 47 | kernel_conf_variable LOGO_LINUX_CLUT224 y |
48 | fi | 48 | fi |
diff --git a/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.7.bb b/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.7.bb index 726aa60ce..90e847c13 100644 --- a/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.7.bb +++ b/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.7.bb | |||
@@ -36,9 +36,9 @@ do_install:append() { | |||
36 | cp -rf ${S}/etc/* ${D}/${sysconfdir}/ | 36 | cp -rf ${S}/etc/* ${D}/${sysconfdir}/ |
37 | 37 | ||
38 | install -d ${D}${systemd_system_unitdir} | 38 | install -d ${D}${systemd_system_unitdir} |
39 | install -m 0644 ${WORKDIR}/minicoredumper.service ${D}${systemd_system_unitdir} | 39 | install -m 0644 ${UNPACKDIR}/minicoredumper.service ${D}${systemd_system_unitdir} |
40 | install -d ${D}${sysconfdir}/init.d | 40 | install -d ${D}${sysconfdir}/init.d |
41 | install -m 0755 ${WORKDIR}/minicoredumper.init ${D}${sysconfdir}/init.d/minicoredumper | 41 | install -m 0755 ${UNPACKDIR}/minicoredumper.init ${D}${sysconfdir}/init.d/minicoredumper |
42 | 42 | ||
43 | # correct path of minicoredumper | 43 | # correct path of minicoredumper |
44 | sed -i -e s:/usr/bin/minicoredumper:${sbindir}/minicoredumper:g ${D}${sysconfdir}/init.d/minicoredumper | 44 | sed -i -e s:/usr/bin/minicoredumper:${sbindir}/minicoredumper:g ${D}${sysconfdir}/init.d/minicoredumper |
diff --git a/meta-oe/recipes-kernel/oprofile/oprofile_1.4.0.bb b/meta-oe/recipes-kernel/oprofile/oprofile_1.4.0.bb index c4c89e575..45f70aa38 100644 --- a/meta-oe/recipes-kernel/oprofile/oprofile_1.4.0.bb +++ b/meta-oe/recipes-kernel/oprofile/oprofile_1.4.0.bb | |||
@@ -43,7 +43,7 @@ inherit autotools pkgconfig ptest | |||
43 | 43 | ||
44 | EXTRA_OECONF = "--with-kernel=${STAGING_DIR_HOST}${prefix} --without-x ac_cv_prog_XSLTPROC=" | 44 | EXTRA_OECONF = "--with-kernel=${STAGING_DIR_HOST}${prefix} --without-x ac_cv_prog_XSLTPROC=" |
45 | do_configure () { | 45 | do_configure () { |
46 | cp ${WORKDIR}/acinclude.m4 ${S}/ | 46 | cp ${UNPACKDIR}/acinclude.m4 ${S}/ |
47 | autotools_do_configure | 47 | autotools_do_configure |
48 | } | 48 | } |
49 | 49 | ||
diff --git a/meta-oe/recipes-kernel/turbostat/turbostat_3.4.bb b/meta-oe/recipes-kernel/turbostat/turbostat_3.4.bb index bdc37c038..02a695218 100644 --- a/meta-oe/recipes-kernel/turbostat/turbostat_3.4.bb +++ b/meta-oe/recipes-kernel/turbostat/turbostat_3.4.bb | |||
@@ -12,7 +12,7 @@ processor frequency and idle power saving state residency on supported \ | |||
12 | processors." | 12 | processors." |
13 | 13 | ||
14 | LICENSE = "GPL-2.0-only" | 14 | LICENSE = "GPL-2.0-only" |
15 | LIC_FILES_CHKSUM = "file://../COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" | 15 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" |
16 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' | 16 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' |
17 | COMPATIBLE_HOST:libc-musl = "null" | 17 | COMPATIBLE_HOST:libc-musl = "null" |
18 | 18 | ||
@@ -50,7 +50,7 @@ do_configure:prepend() { | |||
50 | cp -r ${STAGING_KERNEL_DIR}/include/linux/const.h ${S} | 50 | cp -r ${STAGING_KERNEL_DIR}/include/linux/const.h ${S} |
51 | fi | 51 | fi |
52 | cp -r ${STAGING_KERNEL_DIR}/tools/power/x86/turbostat/* ${S} | 52 | cp -r ${STAGING_KERNEL_DIR}/tools/power/x86/turbostat/* ${S} |
53 | cp -r ${WORKDIR}/COPYING ${S} | 53 | cp -r ${UNPACKDIR}/COPYING ${S} |
54 | } | 54 | } |
55 | 55 | ||
56 | 56 | ||
diff --git a/meta-oe/recipes-multimedia/live555/live555_20210824.bb b/meta-oe/recipes-multimedia/live555/live555_20210824.bb index a899049b7..80c770c3e 100644 --- a/meta-oe/recipes-multimedia/live555/live555_20210824.bb +++ b/meta-oe/recipes-multimedia/live555/live555_20210824.bb | |||
@@ -27,7 +27,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | |||
27 | TARGET_CC_ARCH += "${LDFLAGS}" | 27 | TARGET_CC_ARCH += "${LDFLAGS}" |
28 | 28 | ||
29 | do_configure() { | 29 | do_configure() { |
30 | cp ${WORKDIR}/config.linux-cross . | 30 | cp ${UNPACKDIR}/config.linux-cross . |
31 | echo "COMPILE_OPTS+=" -fPIC -DXLOCALE_NOT_USED"" >> config.linux-cross | 31 | echo "COMPILE_OPTS+=" -fPIC -DXLOCALE_NOT_USED"" >> config.linux-cross |
32 | ./genMakefiles linux-cross | 32 | ./genMakefiles linux-cross |
33 | } | 33 | } |
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_3.24.bb b/meta-oe/recipes-navigation/gpsd/gpsd_3.24.bb index a755e39ed..ddea8ad2e 100644 --- a/meta-oe/recipes-navigation/gpsd/gpsd_3.24.bb +++ b/meta-oe/recipes-navigation/gpsd/gpsd_3.24.bb | |||
@@ -68,7 +68,7 @@ do_install() { | |||
68 | 68 | ||
69 | do_install:append() { | 69 | do_install:append() { |
70 | install -d ${D}${sysconfdir}/init.d | 70 | install -d ${D}${sysconfdir}/init.d |
71 | install -m 0755 ${WORKDIR}/gpsd.init ${D}${sysconfdir}/init.d/gpsd | 71 | install -m 0755 ${UNPACKDIR}/gpsd.init ${D}${sysconfdir}/init.d/gpsd |
72 | install -d ${D}${sysconfdir}/default | 72 | install -d ${D}${sysconfdir}/default |
73 | install -m 0644 ${S}/packaging/deb/etc_default_gpsd ${D}${sysconfdir}/default/gpsd.default | 73 | install -m 0644 ${S}/packaging/deb/etc_default_gpsd ${D}${sysconfdir}/default/gpsd.default |
74 | 74 | ||
diff --git a/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb b/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb index d85ef2057..a6703ecf8 100644 --- a/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb +++ b/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb | |||
@@ -58,7 +58,7 @@ do_compile:prepend () { | |||
58 | do_install:append() { | 58 | do_install:append() { |
59 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 59 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
60 | install -d ${D}${systemd_unitdir}/system | 60 | install -d ${D}${systemd_unitdir}/system |
61 | install -m 0644 ${WORKDIR}/saslauthd.service ${D}${systemd_unitdir}/system | 61 | install -m 0644 ${UNPACKDIR}/saslauthd.service ${D}${systemd_unitdir}/system |
62 | 62 | ||
63 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/saslauthd.service | 63 | sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/saslauthd.service |
64 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${systemd_unitdir}/system/saslauthd.service | 64 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${systemd_unitdir}/system/saslauthd.service |
@@ -68,7 +68,7 @@ do_install:append() { | |||
68 | echo "d /run/saslauthd/ - - - -" > ${D}${sysconfdir}/tmpfiles.d/saslauthd.conf | 68 | echo "d /run/saslauthd/ - - - -" > ${D}${sysconfdir}/tmpfiles.d/saslauthd.conf |
69 | 69 | ||
70 | install -d ${D}${sysconfdir}/default/ | 70 | install -d ${D}${sysconfdir}/default/ |
71 | install -m 0644 ${WORKDIR}/saslauthd.conf ${D}${sysconfdir}/default/saslauthd | 71 | install -m 0644 ${UNPACKDIR}/saslauthd.conf ${D}${sysconfdir}/default/saslauthd |
72 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${sysconfdir}/default/saslauthd | 72 | sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${sysconfdir}/default/saslauthd |
73 | fi | 73 | fi |
74 | } | 74 | } |
diff --git a/meta-oe/recipes-security/audit/audit_4.0.1.bb b/meta-oe/recipes-security/audit/audit_4.0.1.bb index a37ae3bb8..c189cfea5 100644 --- a/meta-oe/recipes-security/audit/audit_4.0.1.bb +++ b/meta-oe/recipes-security/audit/audit_4.0.1.bb | |||
@@ -90,11 +90,11 @@ do_install:append() { | |||
90 | install -m 0640 ${D}/etc/audit/rules.d/audit.rules ${D}/etc/audit/audit.rules | 90 | install -m 0640 ${D}/etc/audit/rules.d/audit.rules ${D}/etc/audit/audit.rules |
91 | 91 | ||
92 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 92 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
93 | install -D -m 0644 ${WORKDIR}/audit-volatile.conf ${D}${sysconfdir}/tmpfiles.d/audit.conf | 93 | install -D -m 0644 ${UNPACKDIR}/audit-volatile.conf ${D}${sysconfdir}/tmpfiles.d/audit.conf |
94 | fi | 94 | fi |
95 | 95 | ||
96 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 96 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
97 | install -D -m 0755 ${WORKDIR}/auditd ${D}/etc/init.d/auditd | 97 | install -D -m 0755 ${UNPACKDIR}/auditd ${D}/etc/init.d/auditd |
98 | rm -rf ${D}${libdir}/systemd | 98 | rm -rf ${D}${libdir}/systemd |
99 | fi | 99 | fi |
100 | 100 | ||
diff --git a/meta-oe/recipes-support/atop/atop_2.4.0.bb b/meta-oe/recipes-support/atop/atop_2.4.0.bb index bb1f53624..4b0e74227 100644 --- a/meta-oe/recipes-support/atop/atop_2.4.0.bb +++ b/meta-oe/recipes-support/atop/atop_2.4.0.bb | |||
@@ -35,12 +35,12 @@ do_install() { | |||
35 | make DESTDIR=${D} VERS=${PV} SYSDPATH=${systemd_system_unitdir} \ | 35 | make DESTDIR=${D} VERS=${PV} SYSDPATH=${systemd_system_unitdir} \ |
36 | PMPATHD=${systemd_unitdir}/system-sleep systemdinstall | 36 | PMPATHD=${systemd_unitdir}/system-sleep systemdinstall |
37 | install -d ${D}${sysconfdir}/tmpfiles.d | 37 | install -d ${D}${sysconfdir}/tmpfiles.d |
38 | install -m 644 ${WORKDIR}/volatiles.atop.conf ${D}${sysconfdir}/tmpfiles.d/atop.conf | 38 | install -m 644 ${UNPACKDIR}/volatiles.atop.conf ${D}${sysconfdir}/tmpfiles.d/atop.conf |
39 | rm -f ${D}${systemd_system_unitdir}/atopacct.service | 39 | rm -f ${D}${systemd_system_unitdir}/atopacct.service |
40 | else | 40 | else |
41 | make DESTDIR=${D} VERS=${PV} sysvinstall | 41 | make DESTDIR=${D} VERS=${PV} sysvinstall |
42 | install -d ${D}${sysconfdir}/default/volatiles | 42 | install -d ${D}${sysconfdir}/default/volatiles |
43 | install -m 644 ${WORKDIR}/volatiles.99_atop ${D}${sysconfdir}/default/volatiles/99_atop | 43 | install -m 644 ${UNPACKDIR}/volatiles.99_atop ${D}${sysconfdir}/default/volatiles/99_atop |
44 | rm -f ${D}${sysconfdir}/init.d/atopacct | 44 | rm -f ${D}${sysconfdir}/init.d/atopacct |
45 | fi | 45 | fi |
46 | 46 | ||
diff --git a/meta-oe/recipes-support/c-ares/c-ares_1.27.0.bb b/meta-oe/recipes-support/c-ares/c-ares_1.27.0.bb index 2d91ac173..d0f5b30eb 100644 --- a/meta-oe/recipes-support/c-ares/c-ares_1.27.0.bb +++ b/meta-oe/recipes-support/c-ares/c-ares_1.27.0.bb | |||
@@ -20,7 +20,7 @@ EXTRA_OECMAKE = "-DCARES_STATIC=${@ 'ON' if d.getVar('DISABLE_STATIC') == '' els | |||
20 | do_install_ptest () { | 20 | do_install_ptest () { |
21 | install -d ${D}${PTEST_PATH} | 21 | install -d ${D}${PTEST_PATH} |
22 | install -m 0755 ${B}/bin/arestest ${D}${PTEST_PATH} | 22 | install -m 0755 ${B}/bin/arestest ${D}${PTEST_PATH} |
23 | install -m 0755 ${WORKDIR}/run-ptest ${D}${PTEST_PATH} | 23 | install -m 0755 ${UNPACKDIR}/run-ptest ${D}${PTEST_PATH} |
24 | } | 24 | } |
25 | 25 | ||
26 | PACKAGE_BEFORE_PN = "${PN}-utils" | 26 | PACKAGE_BEFORE_PN = "${PN}-utils" |
diff --git a/meta-oe/recipes-support/ctapi-common/ctapi-common_1.1-14.bb b/meta-oe/recipes-support/ctapi-common/ctapi-common_1.1-14.bb index 0e994d8b0..90db08544 100644 --- a/meta-oe/recipes-support/ctapi-common/ctapi-common_1.1-14.bb +++ b/meta-oe/recipes-support/ctapi-common/ctapi-common_1.1-14.bb | |||
@@ -2,15 +2,15 @@ SUMMARY = "Common files and packaging infrastructure for CT-API modules" | |||
2 | HOMEPAGE = "http://fedoraproject.org/" | 2 | HOMEPAGE = "http://fedoraproject.org/" |
3 | SECTION = "System Environment/Libraries" | 3 | SECTION = "System Environment/Libraries" |
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://../ctapi-common.LICENSE;md5=8744cd52545ecb45befebd0da6f70f0a" | 5 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/ctapi-common.LICENSE;md5=8744cd52545ecb45befebd0da6f70f0a" |
6 | 6 | ||
7 | SRC_URI = "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.LICENSE \ | 7 | SRC_URI = "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.LICENSE \ |
8 | https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.README" | 8 | https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.README" |
9 | SRC_URI[sha256sum] = "87a74eb0a66055c34ba2c5c919e74f3211c5950ae1c2cbab967fdf4137f5de91" | 9 | SRC_URI[sha256sum] = "87a74eb0a66055c34ba2c5c919e74f3211c5950ae1c2cbab967fdf4137f5de91" |
10 | 10 | ||
11 | do_compile() { | 11 | do_compile() { |
12 | install -pm 644 ${WORKDIR}/ctapi-common.LICENSE LICENSE | 12 | install -pm 644 ${UNPACKDIR}/ctapi-common.LICENSE LICENSE |
13 | install -pm 644 ${WORKDIR}/ctapi-common.README README | 13 | install -pm 644 ${UNPACKDIR}/ctapi-common.README README |
14 | echo ${libdir}/ctapi > ctapi.conf | 14 | echo ${libdir}/ctapi > ctapi.conf |
15 | } | 15 | } |
16 | 16 | ||
diff --git a/meta-oe/recipes-support/gpm/gpm_git.bb b/meta-oe/recipes-support/gpm/gpm_git.bb index 31503e9c6..25e5414a3 100644 --- a/meta-oe/recipes-support/gpm/gpm_git.bb +++ b/meta-oe/recipes-support/gpm/gpm_git.bb | |||
@@ -30,8 +30,8 @@ do_configure:prepend() { | |||
30 | 30 | ||
31 | do_install:append () { | 31 | do_install:append () { |
32 | install -d ${D}${systemd_system_unitdir} | 32 | install -d ${D}${systemd_system_unitdir} |
33 | sed 's:@bindir@:${sbindir}:' < ${WORKDIR}/gpm.service.in >${D}${systemd_system_unitdir}/gpm.service | 33 | sed 's:@bindir@:${sbindir}:' < ${UNPACKDIR}/gpm.service.in >${D}${systemd_system_unitdir}/gpm.service |
34 | install -D -m 0755 ${WORKDIR}/init ${D}${INIT_D_DIR}/gpm | 34 | install -D -m 0755 ${UNPACKDIR}/init ${D}${INIT_D_DIR}/gpm |
35 | ln -s libgpm.so.2 ${D}${libdir}/libgpm.so | 35 | ln -s libgpm.so.2 ${D}${libdir}/libgpm.so |
36 | } | 36 | } |
37 | 37 | ||
diff --git a/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb index b204ea4dd..384a19c4f 100644 --- a/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb +++ b/meta-oe/recipes-support/hddtemp/hddtemp_0.3-beta15.bb | |||
@@ -25,9 +25,9 @@ FILES:${PN} += "/usr/share/misc/hddtemp.db" | |||
25 | 25 | ||
26 | do_install:append() { | 26 | do_install:append() { |
27 | install -d ${D}/usr/share/misc/ | 27 | install -d ${D}/usr/share/misc/ |
28 | install -m 0644 ${WORKDIR}/hddtemp.db ${D}/usr/share/misc/hddtemp.db | 28 | install -m 0644 ${UNPACKDIR}/hddtemp.db ${D}/usr/share/misc/hddtemp.db |
29 | install -d ${D}${sysconfdir}/init.d | 29 | install -d ${D}${sysconfdir}/init.d |
30 | install -m 0644 ${WORKDIR}/init ${D}${sysconfdir}/init.d/hddtemp | 30 | install -m 0644 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/hddtemp |
31 | } | 31 | } |
32 | 32 | ||
33 | INITSCRIPT_NAME = "hddtemp" | 33 | INITSCRIPT_NAME = "hddtemp" |
diff --git a/meta-oe/recipes-support/libee/libee.inc b/meta-oe/recipes-support/libee/libee.inc index 16fe557f7..592109b95 100644 --- a/meta-oe/recipes-support/libee/libee.inc +++ b/meta-oe/recipes-support/libee/libee.inc | |||
@@ -35,5 +35,5 @@ do_install_ptest() { | |||
35 | install -d ${D}${PTEST_PATH} | 35 | install -d ${D}${PTEST_PATH} |
36 | install -m 0755 ${B}/${TESTDIR}/genfile ${D}${PTEST_PATH} | 36 | install -m 0755 ${B}/${TESTDIR}/genfile ${D}${PTEST_PATH} |
37 | install -m 0755 ${B}/${TESTDIR}/.libs/ezapi1 ${D}${PTEST_PATH} | 37 | install -m 0755 ${B}/${TESTDIR}/.libs/ezapi1 ${D}${PTEST_PATH} |
38 | install -m 0755 ${WORKDIR}/ezapi1.sh ${D}${PTEST_PATH} | 38 | install -m 0755 ${UNPACKDIR}/ezapi1.sh ${D}${PTEST_PATH} |
39 | } | 39 | } |
diff --git a/meta-oe/recipes-support/libsmi/libsmi_0.5.0.bb b/meta-oe/recipes-support/libsmi/libsmi_0.5.0.bb index 822b7ffc2..73aeb5539 100644 --- a/meta-oe/recipes-support/libsmi/libsmi_0.5.0.bb +++ b/meta-oe/recipes-support/libsmi/libsmi_0.5.0.bb | |||
@@ -26,7 +26,7 @@ EXTRA_OECONF:class-target = "ac_cv_path_SH=/bin/sh ac_cv_path_WGET=${bindir}/wge | |||
26 | 26 | ||
27 | do_install:append () { | 27 | do_install:append () { |
28 | install -d ${D}${sysconfdir} | 28 | install -d ${D}${sysconfdir} |
29 | install -m 0644 ${WORKDIR}/smi.conf ${D}${sysconfdir}/smi.conf | 29 | install -m 0644 ${UNPACKDIR}/smi.conf ${D}${sysconfdir}/smi.conf |
30 | } | 30 | } |
31 | 31 | ||
32 | PACKAGES += "${PN}-mibs ${PN}-pibs ${PN}-yang" | 32 | PACKAGES += "${PN}-mibs ${PN}-pibs ${PN}-yang" |
diff --git a/meta-oe/recipes-support/libusbgx/libusbgx-config.bb b/meta-oe/recipes-support/libusbgx/libusbgx-config.bb index b269e33c4..4e9e6bcdf 100644 --- a/meta-oe/recipes-support/libusbgx/libusbgx-config.bb +++ b/meta-oe/recipes-support/libusbgx/libusbgx-config.bb | |||
@@ -8,5 +8,5 @@ do_configure[noexec] = "1" | |||
8 | do_compile[noexec] = "1" | 8 | do_compile[noexec] = "1" |
9 | 9 | ||
10 | do_install() { | 10 | do_install() { |
11 | install -Dm 0644 ${WORKDIR}/usbgx.default ${D}${sysconfdir}/default/usbgx | 11 | install -Dm 0644 ${UNPACKDIR}/usbgx.default ${D}${sysconfdir}/default/usbgx |
12 | } | 12 | } |
diff --git a/meta-oe/recipes-support/libusbgx/libusbgx_git.bb b/meta-oe/recipes-support/libusbgx/libusbgx_git.bb index a20ff4eea..bc40f029c 100644 --- a/meta-oe/recipes-support/libusbgx/libusbgx_git.bb +++ b/meta-oe/recipes-support/libusbgx/libusbgx_git.bb | |||
@@ -38,17 +38,17 @@ INITSCRIPT_PARAMS = "defaults" | |||
38 | INHIBIT_UPDATERCD_BBCLASS = "${@bb.utils.contains('PACKAGECONFIG', 'examples', '1', '0', d)}" | 38 | INHIBIT_UPDATERCD_BBCLASS = "${@bb.utils.contains('PACKAGECONFIG', 'examples', '1', '0', d)}" |
39 | 39 | ||
40 | do_install:append() { | 40 | do_install:append() { |
41 | install -Dm 0755 ${WORKDIR}/gadget-start ${D}${bindir}/gadget-start | 41 | install -Dm 0755 ${UNPACKDIR}/gadget-start ${D}${bindir}/gadget-start |
42 | sed -i -e 's,/usr/bin,${bindir},g' -e 's,/etc,${sysconfdir},g' ${D}${bindir}/gadget-start | 42 | sed -i -e 's,/usr/bin,${bindir},g' -e 's,/etc,${sysconfdir},g' ${D}${bindir}/gadget-start |
43 | install -m 0755 ${WORKDIR}/gadget-start ${D}${bindir}/gadget-stop | 43 | install -m 0755 ${UNPACKDIR}/gadget-start ${D}${bindir}/gadget-stop |
44 | sed -i -e 's,/usr/bin,${bindir},g' -e 's,/etc,${sysconfdir},g' ${D}${bindir}/gadget-stop | 44 | sed -i -e 's,/usr/bin,${bindir},g' -e 's,/etc,${sysconfdir},g' ${D}${bindir}/gadget-stop |
45 | 45 | ||
46 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 46 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
47 | install -Dm 0644 ${WORKDIR}/usbgx.service ${D}${systemd_system_unitdir}/usbgx.service | 47 | install -Dm 0644 ${UNPACKDIR}/usbgx.service ${D}${systemd_system_unitdir}/usbgx.service |
48 | fi | 48 | fi |
49 | 49 | ||
50 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 50 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
51 | install -Dm 0755 ${WORKDIR}/usbgx.initd ${D}${sysconfdir}/init.d/usbgx | 51 | install -Dm 0755 ${UNPACKDIR}/usbgx.initd ${D}${sysconfdir}/init.d/usbgx |
52 | fi | 52 | fi |
53 | } | 53 | } |
54 | 54 | ||
diff --git a/meta-oe/recipes-support/links/links-x11_2.26.bb b/meta-oe/recipes-support/links/links-x11_2.26.bb index 4c8d935cc..713919bca 100644 --- a/meta-oe/recipes-support/links/links-x11_2.26.bb +++ b/meta-oe/recipes-support/links/links-x11_2.26.bb | |||
@@ -23,7 +23,7 @@ EXTRA_OECONF = "--enable-graphics \ | |||
23 | 23 | ||
24 | do_install:append() { | 24 | do_install:append() { |
25 | install -d ${D}/${datadir}/applications | 25 | install -d ${D}/${datadir}/applications |
26 | install -m 0644 ${WORKDIR}/links2.desktop ${D}/${datadir}/applications | 26 | install -m 0644 ${UNPACKDIR}/links2.desktop ${D}/${datadir}/applications |
27 | install -d ${D}/${datadir}/pixmaps | 27 | install -d ${D}/${datadir}/pixmaps |
28 | install -m 0644 ${WORKDIR}/links2.png ${D}/${datadir}/pixmaps | 28 | install -m 0644 ${UNPACKDIR}/links2.png ${D}/${datadir}/pixmaps |
29 | } | 29 | } |
diff --git a/meta-oe/recipes-support/lvm2/lvm2_2.03.22.bb b/meta-oe/recipes-support/lvm2/lvm2_2.03.22.bb index c675d3ded..200457c69 100644 --- a/meta-oe/recipes-support/lvm2/lvm2_2.03.22.bb +++ b/meta-oe/recipes-support/lvm2/lvm2_2.03.22.bb | |||
@@ -17,7 +17,7 @@ CACHED_CONFIGUREVARS += "MODPROBE_CMD=${base_sbindir}/modprobe" | |||
17 | do_install:append() { | 17 | do_install:append() { |
18 | # Install machine specific configuration file | 18 | # Install machine specific configuration file |
19 | install -d ${D}${sysconfdir}/lvm | 19 | install -d ${D}${sysconfdir}/lvm |
20 | install -m 0644 ${WORKDIR}/lvm.conf ${D}${sysconfdir}/lvm/lvm.conf | 20 | install -m 0644 ${UNPACKDIR}/lvm.conf ${D}${sysconfdir}/lvm/lvm.conf |
21 | sed -i -e 's:@libdir@:${libdir}:g' ${D}${sysconfdir}/lvm/lvm.conf | 21 | sed -i -e 's:@libdir@:${libdir}:g' ${D}${sysconfdir}/lvm/lvm.conf |
22 | # We don't want init scripts/systemd units for native SDK utilities | 22 | # We don't want init scripts/systemd units for native SDK utilities |
23 | if [ "${PN}" != "nativesdk-lvm2" ]; then | 23 | if [ "${PN}" != "nativesdk-lvm2" ]; then |
diff --git a/meta-oe/recipes-support/monit/monit_5.33.0.bb b/meta-oe/recipes-support/monit/monit_5.33.0.bb index 66d4079a9..9d7b35838 100644 --- a/meta-oe/recipes-support/monit/monit_5.33.0.bb +++ b/meta-oe/recipes-support/monit/monit_5.33.0.bb | |||
@@ -45,12 +45,12 @@ do_configure:prepend() { | |||
45 | do_install:append() { | 45 | do_install:append() { |
46 | 46 | ||
47 | # Configuration file | 47 | # Configuration file |
48 | install -Dm 0600 ${WORKDIR}/monitrc ${D}${sysconfdir}/monitrc | 48 | install -Dm 0600 ${UNPACKDIR}/monitrc ${D}${sysconfdir}/monitrc |
49 | 49 | ||
50 | # SystemD | 50 | # SystemD |
51 | install -Dm 0644 ${S}/system/startup/monit.service.in ${D}${systemd_system_unitdir}/monit.service | 51 | install -Dm 0644 ${S}/system/startup/monit.service.in ${D}${systemd_system_unitdir}/monit.service |
52 | sed -i -e 's,@prefix@,${exec_prefix},g' ${D}${systemd_unitdir}/system/monit.service | 52 | sed -i -e 's,@prefix@,${exec_prefix},g' ${D}${systemd_unitdir}/system/monit.service |
53 | 53 | ||
54 | # SysV | 54 | # SysV |
55 | install -Dm 0755 ${WORKDIR}/monit ${D}${sysconfdir}/init.d/monit | 55 | install -Dm 0755 ${UNPACKDIR}/monit ${D}${sysconfdir}/init.d/monit |
56 | } | 56 | } |
diff --git a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.9.8.bb b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.9.8.bb index e9f01bd1f..374cda3b4 100644 --- a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.9.8.bb +++ b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.9.8.bb | |||
@@ -91,14 +91,14 @@ do_install() { | |||
91 | # | 91 | # |
92 | if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)};then | 92 | if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)};then |
93 | install -d ${D}${sysconfdir}/init.d | 93 | install -d ${D}${sysconfdir}/init.d |
94 | cp ${WORKDIR}/multipathd.oe ${D}${sysconfdir}/init.d/multipathd | 94 | cp ${UNPACKDIR}/multipathd.oe ${D}${sysconfdir}/init.d/multipathd |
95 | fi | 95 | fi |
96 | 96 | ||
97 | sed -i "s:/usr/lib/udev/kpartx_id:${nonarch_base_libdir}/udev/kpartx_id:g" \ | 97 | sed -i "s:/usr/lib/udev/kpartx_id:${nonarch_base_libdir}/udev/kpartx_id:g" \ |
98 | ${D}${nonarch_base_libdir}/udev/rules.d/11-dm-mpath.rules | 98 | ${D}${nonarch_base_libdir}/udev/rules.d/11-dm-mpath.rules |
99 | 99 | ||
100 | install -d ${D}${sysconfdir} | 100 | install -d ${D}${sysconfdir} |
101 | install -m 0644 ${WORKDIR}/multipath.conf.example \ | 101 | install -m 0644 ${UNPACKDIR}/multipath.conf.example \ |
102 | ${D}${sysconfdir}/multipath.conf.example | 102 | ${D}${sysconfdir}/multipath.conf.example |
103 | } | 103 | } |
104 | 104 | ||
diff --git a/meta-oe/recipes-support/nspr/nspr_4.35.bb b/meta-oe/recipes-support/nspr/nspr_4.35.bb index f8d329398..abd750b13 100644 --- a/meta-oe/recipes-support/nspr/nspr_4.35.bb +++ b/meta-oe/recipes-support/nspr/nspr_4.35.bb | |||
@@ -171,7 +171,7 @@ do_compile:append() { | |||
171 | } | 171 | } |
172 | 172 | ||
173 | do_install:append() { | 173 | do_install:append() { |
174 | install -D ${WORKDIR}/nspr.pc.in ${D}${libdir}/pkgconfig/nspr.pc | 174 | install -D ${UNPACKDIR}/nspr.pc.in ${D}${libdir}/pkgconfig/nspr.pc |
175 | sed -i \ | 175 | sed -i \ |
176 | -e 's:NSPRVERSION:${PV}:g' \ | 176 | -e 's:NSPRVERSION:${PV}:g' \ |
177 | -e 's:OEPREFIX:${prefix}:g' \ | 177 | -e 's:OEPREFIX:${prefix}:g' \ |
diff --git a/meta-oe/recipes-support/nss/nss_3.98.bb b/meta-oe/recipes-support/nss/nss_3.98.bb index 01501362e..0ceefb5e3 100644 --- a/meta-oe/recipes-support/nss/nss_3.98.bb +++ b/meta-oe/recipes-support/nss/nss_3.98.bb | |||
@@ -224,7 +224,7 @@ do_install:append() { | |||
224 | done | 224 | done |
225 | 225 | ||
226 | install -d ${D}${libdir}/pkgconfig/ | 226 | install -d ${D}${libdir}/pkgconfig/ |
227 | sed 's/%NSS_VERSION%/${PV}/' ${WORKDIR}/nss.pc.in | sed 's/%NSPR_VERSION%/4.9.2/' > ${D}${libdir}/pkgconfig/nss.pc | 227 | sed 's/%NSS_VERSION%/${PV}/' ${UNPACKDIR}/nss.pc.in | sed 's/%NSPR_VERSION%/4.9.2/' > ${D}${libdir}/pkgconfig/nss.pc |
228 | sed -i s:OEPREFIX:${prefix}:g ${D}${libdir}/pkgconfig/nss.pc | 228 | sed -i s:OEPREFIX:${prefix}:g ${D}${libdir}/pkgconfig/nss.pc |
229 | sed -i s:OEEXECPREFIX:${exec_prefix}:g ${D}${libdir}/pkgconfig/nss.pc | 229 | sed -i s:OEEXECPREFIX:${exec_prefix}:g ${D}${libdir}/pkgconfig/nss.pc |
230 | sed -i s:OELIBDIR:${libdir}:g ${D}${libdir}/pkgconfig/nss.pc | 230 | sed -i s:OELIBDIR:${libdir}:g ${D}${libdir}/pkgconfig/nss.pc |
@@ -239,9 +239,9 @@ do_install:append:class-target() { | |||
239 | # databases by: | 239 | # databases by: |
240 | # certutil -N -d sql:/database/path/ --empty-password | 240 | # certutil -N -d sql:/database/path/ --empty-password |
241 | install -d ${D}${sysconfdir}/pki/nssdb/ | 241 | install -d ${D}${sysconfdir}/pki/nssdb/ |
242 | install -m 0644 ${WORKDIR}/blank-cert9.db ${D}${sysconfdir}/pki/nssdb/cert9.db | 242 | install -m 0644 ${UNPACKDIR}/blank-cert9.db ${D}${sysconfdir}/pki/nssdb/cert9.db |
243 | install -m 0644 ${WORKDIR}/blank-key4.db ${D}${sysconfdir}/pki/nssdb/key4.db | 243 | install -m 0644 ${UNPACKDIR}/blank-key4.db ${D}${sysconfdir}/pki/nssdb/key4.db |
244 | install -m 0644 ${WORKDIR}/system-pkcs11.txt ${D}${sysconfdir}/pki/nssdb/pkcs11.txt | 244 | install -m 0644 ${UNPACKDIR}/system-pkcs11.txt ${D}${sysconfdir}/pki/nssdb/pkcs11.txt |
245 | } | 245 | } |
246 | 246 | ||
247 | PACKAGE_WRITE_DEPS += "nss-native" | 247 | PACKAGE_WRITE_DEPS += "nss-native" |
diff --git a/meta-oe/recipes-support/openct/openct_0.6.20.bb b/meta-oe/recipes-support/openct/openct_0.6.20.bb index 4a1a0f568..e4b99089f 100644 --- a/meta-oe/recipes-support/openct/openct_0.6.20.bb +++ b/meta-oe/recipes-support/openct/openct_0.6.20.bb | |||
@@ -62,7 +62,7 @@ do_install () { | |||
62 | install -d ${D}${sysconfdir} | 62 | install -d ${D}${sysconfdir} |
63 | # fix up hardcoded paths | 63 | # fix up hardcoded paths |
64 | sed -i -e 's,/etc/,${sysconfdir}/,' -e 's,/usr/sbin/,${sbindir}/,' \ | 64 | sed -i -e 's,/etc/,${sysconfdir}/,' -e 's,/usr/sbin/,${sbindir}/,' \ |
65 | ${WORKDIR}/openct.service ${WORKDIR}/openct.init | 65 | ${UNPACKDIR}/openct.service ${UNPACKDIR}/openct.init |
66 | 66 | ||
67 | oe_runmake install DESTDIR=${D} | 67 | oe_runmake install DESTDIR=${D} |
68 | install -dm 755 ${D}${libdir}/ctapi/ | 68 | install -dm 755 ${D}${libdir}/ctapi/ |
@@ -70,11 +70,11 @@ do_install () { | |||
70 | install -Dpm 644 etc/openct.udev ${D}${nonarch_libdir}/udev/rules.d/60-openct.rules | 70 | install -Dpm 644 etc/openct.udev ${D}${nonarch_libdir}/udev/rules.d/60-openct.rules |
71 | install -pm 644 etc/openct.conf ${D}${sysconfdir}/openct.conf | 71 | install -pm 644 etc/openct.conf ${D}${sysconfdir}/openct.conf |
72 | 72 | ||
73 | install -Dpm 755 ${WORKDIR}/openct.init ${D}${sysconfdir}/init.d/openct | 73 | install -Dpm 755 ${UNPACKDIR}/openct.init ${D}${sysconfdir}/init.d/openct |
74 | install -Dpm 644 ${WORKDIR}/openct.sysconfig ${D}${sysconfdir}/sysconfig/openct | 74 | install -Dpm 644 ${UNPACKDIR}/openct.sysconfig ${D}${sysconfdir}/sysconfig/openct |
75 | 75 | ||
76 | install -d ${D}${systemd_unitdir}/system | 76 | install -d ${D}${systemd_unitdir}/system |
77 | install -m 644 ${WORKDIR}/openct.service ${D}${systemd_unitdir}/system | 77 | install -m 644 ${UNPACKDIR}/openct.service ${D}${systemd_unitdir}/system |
78 | 78 | ||
79 | so=$(find ${D} -name \*.so | sed "s|^${D}||") | 79 | so=$(find ${D} -name \*.so | sed "s|^${D}||") |
80 | sed -i -e 's|\\(LIBPATH\\s*\\).*|\\1$so|' etc/reader.conf | 80 | sed -i -e 's|\\(LIBPATH\\s*\\).*|\\1$so|' etc/reader.conf |
diff --git a/meta-oe/recipes-support/openldap/openldap_2.6.7.bb b/meta-oe/recipes-support/openldap/openldap_2.6.7.bb index e807fdef1..c229667d6 100644 --- a/meta-oe/recipes-support/openldap/openldap_2.6.7.bb +++ b/meta-oe/recipes-support/openldap/openldap_2.6.7.bb | |||
@@ -160,7 +160,7 @@ FILES:${PN}-dbg += "${libexecdir}/openldap/.debug" | |||
160 | 160 | ||
161 | do_install:append() { | 161 | do_install:append() { |
162 | install -d ${D}${sysconfdir}/init.d | 162 | install -d ${D}${sysconfdir}/init.d |
163 | cat ${WORKDIR}/initscript > ${D}${sysconfdir}/init.d/openldap | 163 | cat ${UNPACKDIR}/initscript > ${D}${sysconfdir}/init.d/openldap |
164 | chmod 755 ${D}${sysconfdir}/init.d/openldap | 164 | chmod 755 ${D}${sysconfdir}/init.d/openldap |
165 | # This is duplicated in /etc/openldap and is for slapd | 165 | # This is duplicated in /etc/openldap and is for slapd |
166 | rm -f ${D}${localstatedir}/openldap-data/DB_CONFIG.example | 166 | rm -f ${D}${localstatedir}/openldap-data/DB_CONFIG.example |
@@ -177,7 +177,7 @@ do_install:append() { | |||
177 | rmdir --ignore-fail-on-non-empty "${D}${localstatedir}" | 177 | rmdir --ignore-fail-on-non-empty "${D}${localstatedir}" |
178 | 178 | ||
179 | install -d ${D}${systemd_unitdir}/system/ | 179 | install -d ${D}${systemd_unitdir}/system/ |
180 | install -m 0644 ${WORKDIR}/slapd.service ${D}${systemd_unitdir}/system/ | 180 | install -m 0644 ${UNPACKDIR}/slapd.service ${D}${systemd_unitdir}/system/ |
181 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/*.service | 181 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/*.service |
182 | 182 | ||
183 | # Uses mdm as the database | 183 | # Uses mdm as the database |
diff --git a/meta-oe/recipes-support/pcp/pcp_6.0.5.bb b/meta-oe/recipes-support/pcp/pcp_6.0.5.bb index 6a93b2ec9..10545b65e 100644 --- a/meta-oe/recipes-support/pcp/pcp_6.0.5.bb +++ b/meta-oe/recipes-support/pcp/pcp_6.0.5.bb | |||
@@ -52,7 +52,7 @@ RDEPENDS:${PN}-testsuite += "${PN} bash perl" | |||
52 | RDEPENDS:python3-${PN} += "${PN} python3" | 52 | RDEPENDS:python3-${PN} += "${PN} python3" |
53 | 53 | ||
54 | do_configure:prepend () { | 54 | do_configure:prepend () { |
55 | cp ${WORKDIR}/config.linux ${B} | 55 | cp ${UNPACKDIR}/config.linux ${B} |
56 | rm -rf ${S}/include/pcp/configsz.h | 56 | rm -rf ${S}/include/pcp/configsz.h |
57 | rm -rf ${S}/include/pcp/platformsz.h | 57 | rm -rf ${S}/include/pcp/platformsz.h |
58 | export SED=${TMPDIR}/hosttools/sed | 58 | export SED=${TMPDIR}/hosttools/sed |
diff --git a/meta-oe/recipes-support/poppler/poppler-data_0.4.12.bb b/meta-oe/recipes-support/poppler/poppler-data_0.4.12.bb index eed21ad54..5433659af 100644 --- a/meta-oe/recipes-support/poppler/poppler-data_0.4.12.bb +++ b/meta-oe/recipes-support/poppler/poppler-data_0.4.12.bb | |||
@@ -30,7 +30,7 @@ do_compile() { | |||
30 | do_install() { | 30 | do_install() { |
31 | oe_runmake install DESTDIR=${D} prefix=${prefix} datadir=${datadir} | 31 | oe_runmake install DESTDIR=${D} prefix=${prefix} datadir=${datadir} |
32 | install -d ${D}${datadir}/poppler/cMap | 32 | install -d ${D}${datadir}/poppler/cMap |
33 | install -m644 ${WORKDIR}/Identity-* ${D}${datadir}/poppler/cMap/ | 33 | install -m644 ${UNPACKDIR}/Identity-* ${D}${datadir}/poppler/cMap/ |
34 | } | 34 | } |
35 | 35 | ||
36 | FILES:${PN} += "${datadir}" | 36 | FILES:${PN} += "${datadir}" |
diff --git a/meta-oe/recipes-support/serial/serial_1.2.1.bb b/meta-oe/recipes-support/serial/serial_1.2.1.bb index f42d0f351..c3f13d1af 100644 --- a/meta-oe/recipes-support/serial/serial_1.2.1.bb +++ b/meta-oe/recipes-support/serial/serial_1.2.1.bb | |||
@@ -17,7 +17,7 @@ inherit cmake | |||
17 | 17 | ||
18 | # Work-around for https://github.com/wjwwood/serial/issues/135 | 18 | # Work-around for https://github.com/wjwwood/serial/issues/135 |
19 | EXTRA_OECMAKE = " \ | 19 | EXTRA_OECMAKE = " \ |
20 | -DCMAKE_MODULE_PATH=${WORKDIR} \ | 20 | -DCMAKE_MODULE_PATH=${UNPACKDIR} \ |
21 | -DCATKIN_PACKAGE_LIB_DESTINATION=${libdir} \ | 21 | -DCATKIN_PACKAGE_LIB_DESTINATION=${libdir} \ |
22 | -DCATKIN_PACKAGE_BIN_DESTINATION=${bindir} \ | 22 | -DCATKIN_PACKAGE_BIN_DESTINATION=${bindir} \ |
23 | -DCATKIN_GLOBAL_INCLUDE_DESTINATION=${includedir} \ | 23 | -DCATKIN_GLOBAL_INCLUDE_DESTINATION=${includedir} \ |
diff --git a/meta-oe/recipes-support/syslog-ng/syslog-ng_4.6.0.bb b/meta-oe/recipes-support/syslog-ng/syslog-ng_4.6.0.bb index 2c6cc79dd..ab4a8d182 100644 --- a/meta-oe/recipes-support/syslog-ng/syslog-ng_4.6.0.bb +++ b/meta-oe/recipes-support/syslog-ng/syslog-ng_4.6.0.bb | |||
@@ -77,12 +77,12 @@ do_configure:prepend() { | |||
77 | do_install:append() { | 77 | do_install:append() { |
78 | install -d ${D}${sysconfdir}/${BPN} | 78 | install -d ${D}${sysconfdir}/${BPN} |
79 | install -d ${D}${sysconfdir}/init.d | 79 | install -d ${D}${sysconfdir}/init.d |
80 | install -m 755 ${WORKDIR}/initscript ${D}${sysconfdir}/init.d/syslog | 80 | install -m 755 ${UNPACKDIR}/initscript ${D}${sysconfdir}/init.d/syslog |
81 | 81 | ||
82 | install -d ${D}${sysconfdir}/default/volatiles/ | 82 | install -d ${D}${sysconfdir}/default/volatiles/ |
83 | install -m 644 ${WORKDIR}/volatiles.03_syslog-ng ${D}${sysconfdir}/default/volatiles/03_syslog-ng | 83 | install -m 644 ${UNPACKDIR}/volatiles.03_syslog-ng ${D}${sysconfdir}/default/volatiles/03_syslog-ng |
84 | install -d ${D}${sysconfdir}/tmpfiles.d/ | 84 | install -d ${D}${sysconfdir}/tmpfiles.d/ |
85 | install -m 644 ${WORKDIR}/syslog-ng-tmp.conf ${D}${sysconfdir}/tmpfiles.d/syslog-ng.conf | 85 | install -m 644 ${UNPACKDIR}/syslog-ng-tmp.conf ${D}${sysconfdir}/tmpfiles.d/syslog-ng.conf |
86 | 86 | ||
87 | install -d ${D}${localstatedir}/lib/${BPN} | 87 | install -d ${D}${localstatedir}/lib/${BPN} |
88 | # Remove /var/run as it is created on startup | 88 | # Remove /var/run as it is created on startup |
@@ -94,7 +94,7 @@ do_install:append() { | |||
94 | 94 | ||
95 | # support for systemd | 95 | # support for systemd |
96 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 96 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
97 | install -m 644 ${WORKDIR}/syslog-ng.conf.systemd ${D}${sysconfdir}/${BPN}/${BPN}.conf | 97 | install -m 644 ${UNPACKDIR}/syslog-ng.conf.systemd ${D}${sysconfdir}/${BPN}/${BPN}.conf |
98 | 98 | ||
99 | install -d ${D}${systemd_unitdir}/system/ | 99 | install -d ${D}${systemd_unitdir}/system/ |
100 | install -m 644 ${S}/contrib/systemd/${BPN}@.service ${D}${systemd_unitdir}/system/${BPN}@.service | 100 | install -m 644 ${S}/contrib/systemd/${BPN}@.service ${D}${systemd_unitdir}/system/${BPN}@.service |
@@ -107,7 +107,7 @@ do_install:append() { | |||
107 | install -d ${D}${systemd_unitdir}/system/multi-user.target.wants | 107 | install -d ${D}${systemd_unitdir}/system/multi-user.target.wants |
108 | ln -sf ../${BPN}@.service ${D}${systemd_unitdir}/system/multi-user.target.wants/${BPN}@default.service | 108 | ln -sf ../${BPN}@.service ${D}${systemd_unitdir}/system/multi-user.target.wants/${BPN}@default.service |
109 | else | 109 | else |
110 | install -m 644 ${WORKDIR}/syslog-ng.conf.sysvinit ${D}${sysconfdir}/${BPN}/${BPN}.conf | 110 | install -m 644 ${UNPACKDIR}/syslog-ng.conf.sysvinit ${D}${sysconfdir}/${BPN}/${BPN}.conf |
111 | fi | 111 | fi |
112 | 112 | ||
113 | oe_multilib_header syslog-ng/syslog-ng-config.h | 113 | oe_multilib_header syslog-ng/syslog-ng-config.h |
diff --git a/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb b/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb index 7970cd953..0c8a10e0e 100644 --- a/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb +++ b/meta-oe/recipes-support/unicode-ucd/unicode-ucd_14.0.0.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | SUMMARY = "Unicode Character Database" | 1 | SUMMARY = "Unicode Character Database" |
2 | HOMEPAGE = "https://unicode.org/ucd/" | 2 | HOMEPAGE = "https://unicode.org/ucd/" |
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/license.txt;md5=4b11b5cbb0a24df9f4e7db63db98f22f" | 4 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/license.txt;md5=4b11b5cbb0a24df9f4e7db63db98f22f" |
5 | 5 | ||
6 | SRC_URI = " \ | 6 | SRC_URI = " \ |
7 | https://www.unicode.org/Public/zipped/${PV}/UCD.zip;name=ucd;subdir=ucd;downloadfilename=unicode-ucd-${PV}.zip \ | 7 | https://www.unicode.org/Public/zipped/${PV}/UCD.zip;name=ucd;subdir=ucd;downloadfilename=unicode-ucd-${PV}.zip \ |
@@ -16,7 +16,7 @@ do_configure[noexec] = "1" | |||
16 | 16 | ||
17 | do_install() { | 17 | do_install() { |
18 | install -d ${D}${datadir}/unicode | 18 | install -d ${D}${datadir}/unicode |
19 | cp -rf ${WORKDIR}/ucd ${D}${datadir}/unicode | 19 | cp -rf ${UNPACKDIR}/ucd ${D}${datadir}/unicode |
20 | } | 20 | } |
21 | 21 | ||
22 | FILES:${PN} = "${datadir}/unicode/ucd" | 22 | FILES:${PN} = "${datadir}/unicode/ucd" |
diff --git a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.0.18.bb b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.0.18.bb index eebbe202f..47f616e99 100644 --- a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.0.18.bb +++ b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_7.0.18.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | SUMMARY = "VirtualBox Linux Guest Drivers" | 1 | SUMMARY = "VirtualBox Linux Guest Drivers" |
2 | SECTION = "core" | 2 | SECTION = "core" |
3 | LICENSE = "GPL-3.0-only" | 3 | LICENSE = "GPL-3.0-only" |
4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/${VBOX_NAME}/COPYING;md5=fff5fe1c81dd6dc3d522e7862e44881e" | 4 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/${VBOX_NAME}/COPYING;md5=fff5fe1c81dd6dc3d522e7862e44881e" |
5 | 5 | ||
6 | DEPENDS = "virtual/kernel" | 6 | DEPENDS = "virtual/kernel" |
7 | 7 | ||
@@ -33,14 +33,14 @@ do_export_sources[depends] += "virtual/kernel:do_shared_workdir" | |||
33 | 33 | ||
34 | do_export_sources() { | 34 | do_export_sources() { |
35 | mkdir -p "${S}" | 35 | mkdir -p "${S}" |
36 | ${WORKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/export_modules.sh ${T}/vbox_modules.tar.gz | 36 | ${UNPACKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/export_modules.sh ${T}/vbox_modules.tar.gz |
37 | tar -C "${S}" -xzf ${T}/vbox_modules.tar.gz | 37 | tar -C "${S}" -xzf ${T}/vbox_modules.tar.gz |
38 | 38 | ||
39 | # add a mount utility to use shared folder from VBox Addition Source Code | 39 | # add a mount utility to use shared folder from VBox Addition Source Code |
40 | mkdir -p "${S}/utils" | 40 | mkdir -p "${S}/utils" |
41 | install ${WORKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/sharedfolders/mount.vboxsf.c ${S}/utils | 41 | install ${UNPACKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/sharedfolders/mount.vboxsf.c ${S}/utils |
42 | install ${WORKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/sharedfolders/vbsfmount.c ${S}/utils | 42 | install ${UNPACKDIR}/${VBOX_NAME}/src/VBox/Additions/linux/sharedfolders/vbsfmount.c ${S}/utils |
43 | install ${S}/../Makefile.utils ${S}/utils/Makefile | 43 | install ${UNPACKDIR}/Makefile.utils ${S}/utils/Makefile |
44 | 44 | ||
45 | # some kernel versions have issues with stdarg.h and compatibility with | 45 | # some kernel versions have issues with stdarg.h and compatibility with |
46 | # the sysroot and libc-headers/uapi. If we include the file directly from | 46 | # the sysroot and libc-headers/uapi. If we include the file directly from |
diff --git a/meta-oe/recipes-support/xrdp/xrdp_0.9.19.bb b/meta-oe/recipes-support/xrdp/xrdp_0.9.19.bb index b839a6829..c1b75e613 100644 --- a/meta-oe/recipes-support/xrdp/xrdp_0.9.19.bb +++ b/meta-oe/recipes-support/xrdp/xrdp_0.9.19.bb | |||
@@ -66,7 +66,7 @@ do_install:append() { | |||
66 | install -d ${D}${sysconfdir}/sysconfig/xrdp | 66 | install -d ${D}${sysconfdir}/sysconfig/xrdp |
67 | install -m 0644 ${S}/instfiles/*.ini ${D}${sysconfdir}/xrdp/ | 67 | install -m 0644 ${S}/instfiles/*.ini ${D}${sysconfdir}/xrdp/ |
68 | install -m 0644 ${S}/keygen/openssl.conf ${D}${sysconfdir}/xrdp/ | 68 | install -m 0644 ${S}/keygen/openssl.conf ${D}${sysconfdir}/xrdp/ |
69 | install -m 0644 ${WORKDIR}/xrdp.sysconfig ${D}${sysconfdir}/sysconfig/xrdp/ | 69 | install -m 0644 ${UNPACKDIR}/xrdp.sysconfig ${D}${sysconfdir}/sysconfig/xrdp/ |
70 | chown xrdp:xrdp ${D}${sysconfdir}/xrdp | 70 | chown xrdp:xrdp ${D}${sysconfdir}/xrdp |
71 | } | 71 | } |
72 | 72 | ||