diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-05-14 10:05:20 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-05-23 08:44:44 -0700 |
commit | c33cfad1b0e1f84f6605689457e16fb0518ee383 (patch) | |
tree | 9a280a37e62ddbfda807dea68419ab457bbe657a | |
parent | ffc64e9c6fee0af7eea3466135416d011172a5e6 (diff) | |
download | meta-openembedded-c33cfad1b0e1f84f6605689457e16fb0518ee383.tar.gz |
recipes: Switch away from S = WORKDIR
Make it dependent on UNPACKDIR instead
Signed-off-by: Khem Raj <raj.khem@gmail.com>
20 files changed, 58 insertions, 39 deletions
diff --git a/meta-gnome/recipes-gnome/faenza-icon-theme/faenza-icon-theme_1.3.bb b/meta-gnome/recipes-gnome/faenza-icon-theme/faenza-icon-theme_1.3.bb index 12d344bff5..5db9457122 100644 --- a/meta-gnome/recipes-gnome/faenza-icon-theme/faenza-icon-theme_1.3.bb +++ b/meta-gnome/recipes-gnome/faenza-icon-theme/faenza-icon-theme_1.3.bb | |||
@@ -6,7 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | |||
6 | 6 | ||
7 | inherit allarch gtk-icon-cache | 7 | inherit allarch gtk-icon-cache |
8 | 8 | ||
9 | S = "${WORKDIR}" | 9 | S = "${WORKDIR}/sources" |
10 | UNPACKDIR = "${S}" | ||
10 | 11 | ||
11 | SRC_URI = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${BPN}/${BPN}_${PV}.zip" | 12 | SRC_URI = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${BPN}/${BPN}_${PV}.zip" |
12 | SRC_URI[sha256sum] = "d4486fda0413f8a81a87e0dd2329f50f2a8a7cb4147b48cf147f0160add8174a" | 13 | SRC_URI[sha256sum] = "d4486fda0413f8a81a87e0dd2329f50f2a8a7cb4147b48cf147f0160add8174a" |
diff --git a/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb b/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb index 4e1e434314..9d46b43c42 100644 --- a/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb +++ b/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb | |||
@@ -6,13 +6,14 @@ inherit allarch | |||
6 | 6 | ||
7 | SRC_URI = "file://classic-light.xml" | 7 | SRC_URI = "file://classic-light.xml" |
8 | 8 | ||
9 | S = "${WORKDIR}" | 9 | S = "${WORKDIR}/sources" |
10 | UNPACKDIR = "${S}" | ||
10 | 11 | ||
11 | do_install() { | 12 | do_install() { |
12 | install -d ${D}${datadir}/gtksourceview-3.0/styles | 13 | install -d ${D}${datadir}/gtksourceview-3.0/styles |
13 | install -m 0644 ${WORKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-3.0/styles/ | 14 | install -m 0644 ${UNPACKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-3.0/styles/ |
14 | install -d ${D}${datadir}/gtksourceview-4/styles | 15 | install -d ${D}${datadir}/gtksourceview-4/styles |
15 | install -m 0644 ${WORKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-4/styles/ | 16 | install -m 0644 ${UNPACKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-4/styles/ |
16 | } | 17 | } |
17 | 18 | ||
18 | FILES:${PN} = " \ | 19 | FILES:${PN} = " \ |
diff --git a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.2.bb b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.2.bb index 2dce19c6be..d8134b228c 100644 --- a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.2.bb +++ b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.2.bb | |||
@@ -6,7 +6,8 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda | |||
6 | 6 | ||
7 | SRC_URI = "file://icon.xpm" | 7 | SRC_URI = "file://icon.xpm" |
8 | 8 | ||
9 | S = "${WORKDIR}" | 9 | S = "${WORKDIR}/sources" |
10 | UNPACKDIR = "${S}" | ||
10 | 11 | ||
11 | do_install:prepend () { | 12 | do_install:prepend () { |
12 | echo '# /boot/boot.cfg - KEXECBOOT configuration file. | 13 | echo '# /boot/boot.cfg - KEXECBOOT configuration file. |
diff --git a/meta-initramfs/recipes-core/initrdscripts/initramfs-debug_1.0.bb b/meta-initramfs/recipes-core/initrdscripts/initramfs-debug_1.0.bb index 4c06346570..c2b3faddda 100644 --- a/meta-initramfs/recipes-core/initrdscripts/initramfs-debug_1.0.bb +++ b/meta-initramfs/recipes-core/initrdscripts/initramfs-debug_1.0.bb | |||
@@ -3,10 +3,11 @@ LICENSE = "MIT" | |||
3 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | 3 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" |
4 | SRC_URI = "file://init-debug.sh" | 4 | SRC_URI = "file://init-debug.sh" |
5 | 5 | ||
6 | S = "${WORKDIR}" | 6 | S = "${WORKDIR}/sources" |
7 | UNPACKDIR = "${S}" | ||
7 | 8 | ||
8 | do_install() { | 9 | do_install() { |
9 | install -m 0755 ${WORKDIR}/init-debug.sh ${D}/init | 10 | install -m 0755 ${UNPACKDIR}/init-debug.sh ${D}/init |
10 | } | 11 | } |
11 | 12 | ||
12 | inherit allarch | 13 | inherit allarch |
diff --git a/meta-networking/recipes-support/nuttcp/nuttcp_8.2.2.bb b/meta-networking/recipes-support/nuttcp/nuttcp_8.2.2.bb index 115b51e96c..b02f775a55 100644 --- a/meta-networking/recipes-support/nuttcp/nuttcp_8.2.2.bb +++ b/meta-networking/recipes-support/nuttcp/nuttcp_8.2.2.bb | |||
@@ -18,7 +18,8 @@ SRC_URI = "http://nuttcp.net/${BPN}/beta/${BP}.c \ | |||
18 | SRC_URI[md5sum] = "d3c92c4d2f261221193c3726c1b9a42f" | 18 | SRC_URI[md5sum] = "d3c92c4d2f261221193c3726c1b9a42f" |
19 | SRC_URI[sha256sum] = "8c5595bcd27c2fd66831be74c390df078cfb1870aa427f2511ac2586d236c8a1" | 19 | SRC_URI[sha256sum] = "8c5595bcd27c2fd66831be74c390df078cfb1870aa427f2511ac2586d236c8a1" |
20 | 20 | ||
21 | S = "${WORKDIR}" | 21 | S = "${WORKDIR}/sources" |
22 | UNPACKDIR = "${S}" | ||
22 | 23 | ||
23 | do_compile () { | 24 | do_compile () { |
24 | ${CC} ${CFLAGS} ${LDFLAGS} -o nuttcp nuttcp-${PV}.c | 25 | ${CC} ${CFLAGS} ${LDFLAGS} -o nuttcp nuttcp-${PV}.c |
@@ -28,8 +29,8 @@ do_install () { | |||
28 | install -d ${D}${bindir} | 29 | install -d ${D}${bindir} |
29 | install -d ${D}${systemd_system_unitdir} | 30 | install -d ${D}${systemd_system_unitdir} |
30 | install -m 0755 nuttcp ${D}${bindir} | 31 | install -m 0755 nuttcp ${D}${bindir} |
31 | install -m 0644 ${WORKDIR}/nuttcp@.service ${D}${systemd_system_unitdir} | 32 | install -m 0644 ${UNPACKDIR}/nuttcp@.service ${D}${systemd_system_unitdir} |
32 | install -m 0644 ${WORKDIR}/nuttcp.socket ${D}${systemd_system_unitdir} | 33 | install -m 0644 ${UNPACKDIR}/nuttcp.socket ${D}${systemd_system_unitdir} |
33 | } | 34 | } |
34 | 35 | ||
35 | FILES:${PN} += " \ | 36 | FILES:${PN} += " \ |
diff --git a/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb b/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb index b49951cc27..a0327ee154 100644 --- a/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb +++ b/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb | |||
@@ -10,7 +10,8 @@ SRC_URI = "http://www.netlib.org/benchmark/linpackc.new;downloadfilename=linpack | |||
10 | SRC_URI[md5sum] = "1c5d0b6a31264685d2e651c920e3cdf4" | 10 | SRC_URI[md5sum] = "1c5d0b6a31264685d2e651c920e3cdf4" |
11 | SRC_URI[sha256sum] = "a63f2ec86512959f1fd926bfafb85905b2d7b7402942ffae3af374d48745e97e" | 11 | SRC_URI[sha256sum] = "a63f2ec86512959f1fd926bfafb85905b2d7b7402942ffae3af374d48745e97e" |
12 | 12 | ||
13 | S = "${WORKDIR}" | 13 | S = "${WORKDIR}/sources" |
14 | UNPACKDIR = "${S}" | ||
14 | 15 | ||
15 | do_compile () { | 16 | do_compile () { |
16 | ${CC} ${CFLAGS} ${LDFLAGS} -DDP -o linpack_dp linpacknew.c -lm | 17 | ${CC} ${CFLAGS} ${LDFLAGS} -DDP -o linpack_dp linpacknew.c -lm |
diff --git a/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb index 8fad04e365..ce28fc732c 100644 --- a/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb +++ b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb | |||
@@ -2,13 +2,14 @@ DESCRIPTION = "Whetstone benchmark is a synthetic benchmark for evaluating the p | |||
2 | SUMMARY = "CPU benchmark to measure floating point performance" | 2 | SUMMARY = "CPU benchmark to measure floating point performance" |
3 | 3 | ||
4 | LICENSE = "PD" | 4 | LICENSE = "PD" |
5 | LIC_FILES_CHKSUM ="file://${WORKDIR}/whetstone.c;beginline=1;endline=52;md5=c795edc15e7e1d92ca8f88ad718449f5" | 5 | LIC_FILES_CHKSUM ="file://${UNPACKDIR}/whetstone.c;beginline=1;endline=52;md5=c795edc15e7e1d92ca8f88ad718449f5" |
6 | 6 | ||
7 | SRC_URI = "http://www.netlib.org/benchmark/whetstone.c" | 7 | SRC_URI = "http://www.netlib.org/benchmark/whetstone.c" |
8 | SRC_URI[md5sum] = "d8eb2cd7104bb5a12d614ac6d3f1f9fb" | 8 | SRC_URI[md5sum] = "d8eb2cd7104bb5a12d614ac6d3f1f9fb" |
9 | SRC_URI[sha256sum] = "333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf" | 9 | SRC_URI[sha256sum] = "333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf" |
10 | 10 | ||
11 | S = "${WORKDIR}" | 11 | S = "${WORKDIR}/sources" |
12 | UNPACKDIR = "${S}" | ||
12 | 13 | ||
13 | do_compile () { | 14 | do_compile () { |
14 | ${CC} ${CFLAGS} ${LDFLAGS} -Ofast -o whetstone whetstone.c -lm | 15 | ${CC} ${CFLAGS} ${LDFLAGS} -Ofast -o whetstone whetstone.c -lm |
diff --git a/meta-oe/recipes-bsp/lm_sensors/lmsensors-config_1.0.bb b/meta-oe/recipes-bsp/lm_sensors/lmsensors-config_1.0.bb index 25ab44f75e..6fad255c89 100644 --- a/meta-oe/recipes-bsp/lm_sensors/lmsensors-config_1.0.bb +++ b/meta-oe/recipes-bsp/lm_sensors/lmsensors-config_1.0.bb | |||
@@ -12,7 +12,8 @@ SRC_URI = "file://fancontrol \ | |||
12 | file://sensors.conf \ | 12 | file://sensors.conf \ |
13 | file://sensord \ | 13 | file://sensord \ |
14 | " | 14 | " |
15 | S = "${WORKDIR}" | 15 | S = "${WORKDIR}/sources" |
16 | UNPACKDIR = "${S}" | ||
16 | 17 | ||
17 | PACKAGECONFIG ??= "sensord" | 18 | PACKAGECONFIG ??= "sensord" |
18 | PACKAGECONFIG[sensord] = ",," | 19 | PACKAGECONFIG[sensord] = ",," |
@@ -22,20 +23,20 @@ RDEPENDS:${PN}-dev = "" | |||
22 | do_install() { | 23 | do_install() { |
23 | # Install fancontrol configuration file | 24 | # Install fancontrol configuration file |
24 | install -d ${D}${sysconfdir}/sysconfig | 25 | install -d ${D}${sysconfdir}/sysconfig |
25 | install -m 0644 ${WORKDIR}/fancontrol ${D}${sysconfdir} | 26 | install -m 0644 ${UNPACKDIR}/fancontrol ${D}${sysconfdir} |
26 | install -m 0644 ${WORKDIR}/sensord ${D}${sysconfdir}/sysconfig | 27 | install -m 0644 ${UNPACKDIR}/sensord ${D}${sysconfdir}/sysconfig |
27 | # Install libsensors configuration file | 28 | # Install libsensors configuration file |
28 | install -d ${D}${sysconfdir}/sensors.d | 29 | install -d ${D}${sysconfdir}/sensors.d |
29 | install -m 0644 ${WORKDIR}/sensors.conf ${D}${sysconfdir}/sensors.d | 30 | install -m 0644 ${UNPACKDIR}/sensors.conf ${D}${sysconfdir}/sensors.d |
30 | 31 | ||
31 | if ${@bb.utils.contains('PACKAGECONFIG', 'sensord', 'true', 'false', d)}; then | 32 | if ${@bb.utils.contains('PACKAGECONFIG', 'sensord', 'true', 'false', d)}; then |
32 | # Install sensord configuration file | 33 | # Install sensord configuration file |
33 | install -m 0644 ${WORKDIR}/sensord.conf ${D}${sysconfdir} | 34 | install -m 0644 ${UNPACKDIR}/sensord.conf ${D}${sysconfdir} |
34 | 35 | ||
35 | # Install sensord.cgi script and create world-writable | 36 | # Install sensord.cgi script and create world-writable |
36 | # web-accessible sensord directory | 37 | # web-accessible sensord directory |
37 | install -d ${D}/www/pages/cgi-bin | 38 | install -d ${D}/www/pages/cgi-bin |
38 | install -m 0755 ${WORKDIR}/sensord.cgi ${D}/www/pages/cgi-bin | 39 | install -m 0755 ${UNPACKDIR}/sensord.cgi ${D}/www/pages/cgi-bin |
39 | install -d -m a=rwxs ${D}/www/pages/sensord | 40 | install -d -m a=rwxs ${D}/www/pages/sensord |
40 | fi | 41 | fi |
41 | } | 42 | } |
diff --git a/meta-oe/recipes-bsp/pointercal/pointercal_0.0.bb b/meta-oe/recipes-bsp/pointercal/pointercal_0.0.bb index 61be5b2dcc..20e870ccb2 100644 --- a/meta-oe/recipes-bsp/pointercal/pointercal_0.0.bb +++ b/meta-oe/recipes-bsp/pointercal/pointercal_0.0.bb | |||
@@ -6,7 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4b5fcfc87fb615860d398b5e38685edf" | |||
6 | SRC_URI = "file://pointercal \ | 6 | SRC_URI = "file://pointercal \ |
7 | file://COPYING" | 7 | file://COPYING" |
8 | 8 | ||
9 | S = "${WORKDIR}" | 9 | S = "${WORKDIR}/sources" |
10 | UNPACKDIR = "${S}" | ||
10 | 11 | ||
11 | do_install() { | 12 | do_install() { |
12 | # Only install file if it has a contents | 13 | # Only install file if it has a contents |
diff --git a/meta-oe/recipes-core/proxy-libintl/proxy-libintl_20100902.bb b/meta-oe/recipes-core/proxy-libintl/proxy-libintl_20100902.bb index 247cc4266f..86a2331bd3 100644 --- a/meta-oe/recipes-core/proxy-libintl/proxy-libintl_20100902.bb +++ b/meta-oe/recipes-core/proxy-libintl/proxy-libintl_20100902.bb | |||
@@ -2,7 +2,7 @@ SUMMARY = "Proxy libintl" | |||
2 | HOMEPAGE = "http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/" | 2 | HOMEPAGE = "http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/" |
3 | SECTION = "libs" | 3 | SECTION = "libs" |
4 | LICENSE = "LGPL-2.0-only" | 4 | LICENSE = "LGPL-2.0-only" |
5 | LIC_FILES_CHKSUM = "file://src/proxy-libintl/COPYING.LIB.txt;md5=bc400bc21422f9a92e76ec2c5167ca2e" | 5 | LIC_FILES_CHKSUM = "file://${UNPACKDIR}/src/proxy-libintl/COPYING.LIB.txt;md5=bc400bc21422f9a92e76ec2c5167ca2e" |
6 | 6 | ||
7 | PROVIDES = "virtual/libintl" | 7 | PROVIDES = "virtual/libintl" |
8 | 8 | ||
@@ -12,7 +12,6 @@ SRC_URI = " \ | |||
12 | SRC_URI[md5sum] = "aef407c2b97ee829383aadd867c61d1e" | 12 | SRC_URI[md5sum] = "aef407c2b97ee829383aadd867c61d1e" |
13 | SRC_URI[sha256sum] = "291ac350cc5eb4a01b0d651ca99fae64cee8a1c06b2005277fab5a4356f9ae91" | 13 | SRC_URI[sha256sum] = "291ac350cc5eb4a01b0d651ca99fae64cee8a1c06b2005277fab5a4356f9ae91" |
14 | 14 | ||
15 | S = "${WORKDIR}" | ||
16 | PACKAGES = "${PN} ${PN}-dev" | 15 | PACKAGES = "${PN} ${PN}-dev" |
17 | FILES:${PN}-dev = "${includedir}/libintl.h ${libdir}/libintl.a" | 16 | FILES:${PN}-dev = "${includedir}/libintl.h ${libdir}/libintl.a" |
18 | INSANE_SKIP:${PN}-dev = "staticdev" | 17 | INSANE_SKIP:${PN}-dev = "staticdev" |
@@ -21,13 +20,13 @@ CFLAGS:append = " -fPIC -Wall -I ../../include ${@['-DSTUB_ONLY', ''][d.getVar(' | |||
21 | TARGET_CC_ARCH += "${LDFLAGS}" | 20 | TARGET_CC_ARCH += "${LDFLAGS}" |
22 | 21 | ||
23 | do_compile() { | 22 | do_compile() { |
24 | cd ${WORKDIR}/src/proxy-libintl | 23 | cd ${UNPACKDIR}/src/proxy-libintl |
25 | oe_runmake ../../lib/libintl.a | 24 | oe_runmake ../../lib/libintl.a |
26 | } | 25 | } |
27 | 26 | ||
28 | do_install() { | 27 | do_install() { |
29 | install -d ${D}/${includedir} | 28 | install -d ${D}/${includedir} |
30 | install -d ${D}/${libdir} | 29 | install -d ${D}/${libdir} |
31 | install -m 0644 ${WORKDIR}/include/libintl.h ${D}/${includedir} | 30 | install -m 0644 ${UNPACKDIR}/include/libintl.h ${D}/${includedir} |
32 | install -m 0644 ${WORKDIR}/lib/libintl.a ${D}/${libdir} | 31 | install -m 0644 ${UNPACKDIR}/lib/libintl.a ${D}/${libdir} |
33 | } | 32 | } |
diff --git a/meta-oe/recipes-core/usleep/usleep_1.2.bb b/meta-oe/recipes-core/usleep/usleep_1.2.bb index a529032aad..882ac2c2ff 100644 --- a/meta-oe/recipes-core/usleep/usleep_1.2.bb +++ b/meta-oe/recipes-core/usleep/usleep_1.2.bb | |||
@@ -3,7 +3,8 @@ SECTION = "base" | |||
3 | LICENSE = "GPL-2.0-only" | 3 | LICENSE = "GPL-2.0-only" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
5 | 5 | ||
6 | S = "${WORKDIR}" | 6 | S = "${WORKDIR}/sources" |
7 | UNPACKDIR = "${S}" | ||
7 | DEPENDS = "popt" | 8 | DEPENDS = "popt" |
8 | 9 | ||
9 | SRC_URI = "file://usleep.c \ | 10 | SRC_URI = "file://usleep.c \ |
@@ -19,8 +20,8 @@ do_install() { | |||
19 | install -d ${D}${base_bindir} | 20 | install -d ${D}${base_bindir} |
20 | install -d ${D}${mandir}/man1 | 21 | install -d ${D}${mandir}/man1 |
21 | 22 | ||
22 | install -m 0755 ${WORKDIR}/usleep ${D}${base_bindir} | 23 | install -m 0755 ${UNPACKDIR}/usleep ${D}${base_bindir} |
23 | install -m 0644 ${WORKDIR}/usleep.1 ${D}${mandir}/man1 | 24 | install -m 0644 ${UNPACKDIR}/usleep.1 ${D}${mandir}/man1 |
24 | } | 25 | } |
25 | 26 | ||
26 | inherit update-alternatives | 27 | inherit update-alternatives |
diff --git a/meta-oe/recipes-devtools/systemd/nativesdk-systemd-systemctl.bb b/meta-oe/recipes-devtools/systemd/nativesdk-systemd-systemctl.bb index f7160f508b..3360ccf357 100644 --- a/meta-oe/recipes-devtools/systemd/nativesdk-systemd-systemctl.bb +++ b/meta-oe/recipes-devtools/systemd/nativesdk-systemd-systemctl.bb | |||
@@ -7,9 +7,10 @@ inherit nativesdk | |||
7 | 7 | ||
8 | SRC_URI = "file://systemctl" | 8 | SRC_URI = "file://systemctl" |
9 | 9 | ||
10 | S = "${WORKDIR}" | 10 | S = "${WORKDIR}/sources" |
11 | UNPACKDIR = "${S}" | ||
11 | 12 | ||
12 | do_install() { | 13 | do_install() { |
13 | install -d ${D}${bindir} | 14 | install -d ${D}${bindir} |
14 | install -m 0755 ${WORKDIR}/systemctl ${D}${bindir} | 15 | install -m 0755 ${UNPACKDIR}/systemctl ${D}${bindir} |
15 | } | 16 | } |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb index d618607496..c142f1dd02 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb | |||
@@ -23,7 +23,8 @@ SRC_URI = "git://github.com/google/fonts.git;protocol=https;branch=main;subpath= | |||
23 | git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasanscondensed;name=firasanscondensed \ | 23 | git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasanscondensed;name=firasanscondensed \ |
24 | git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasansextracondensed;name=firasansextracondensed" | 24 | git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasansextracondensed;name=firasansextracondensed" |
25 | 25 | ||
26 | S = "${WORKDIR}" | 26 | S = "${WORKDIR}/sources" |
27 | UNPACKDIR = "${S}" | ||
27 | 28 | ||
28 | do_install:append() { | 29 | do_install:append() { |
29 | install -d ${D}${datadir}/fonts/truetype/ | 30 | install -d ${D}${datadir}/fonts/truetype/ |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-lklug_0.6-14.20090803cvs.fc24.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-lklug_0.6-14.20090803cvs.fc24.bb index 3951647337..65d0f0bb35 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-lklug_0.6-14.20090803cvs.fc24.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-lklug_0.6-14.20090803cvs.fc24.bb | |||
@@ -10,7 +10,8 @@ SRC_URI[sha256sum] = "de5750f7048973f851961050f76b8b58e9bda400d5007c3078d9317fbe | |||
10 | 10 | ||
11 | DEPENDS = "fontforge-native" | 11 | DEPENDS = "fontforge-native" |
12 | 12 | ||
13 | S = "${WORKDIR}" | 13 | S = "${WORKDIR}/sources" |
14 | UNPACKDIR = "${S}" | ||
14 | FONT_PACKAGES = "${PN}" | 15 | FONT_PACKAGES = "${PN}" |
15 | FILES:${PN} = "${datadir}" | 16 | FILES:${PN} = "${datadir}" |
16 | 17 | ||
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb index 1870c78f99..3752ec39bc 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb | |||
@@ -9,6 +9,7 @@ SRC_URI = "https://github.com/google/roboto/releases/download/v${PV}/roboto-andr | |||
9 | SRC_URI[md5sum] = "3b43a5cb33196ec25e44d5fcb40219e1" | 9 | SRC_URI[md5sum] = "3b43a5cb33196ec25e44d5fcb40219e1" |
10 | SRC_URI[sha256sum] = "c825453253f590cfe62557733e7173f9a421fff103b00f57d33c4ad28ae53baf" | 10 | SRC_URI[sha256sum] = "c825453253f590cfe62557733e7173f9a421fff103b00f57d33c4ad28ae53baf" |
11 | 11 | ||
12 | S = "${WORKDIR}" | 12 | S = "${WORKDIR}/sources" |
13 | UNPACKDIR = "${S}" | ||
13 | 14 | ||
14 | FILES:${PN} = "${datadir}/fonts/truetype/*.ttf" | 15 | FILES:${PN} = "${datadir}/fonts/truetype/*.ttf" |
diff --git a/meta-oe/recipes-support/fbset/fbset-modes.bb b/meta-oe/recipes-support/fbset/fbset-modes.bb index aa5f631c38..fcaf31795b 100644 --- a/meta-oe/recipes-support/fbset/fbset-modes.bb +++ b/meta-oe/recipes-support/fbset/fbset-modes.bb | |||
@@ -6,11 +6,13 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384 | |||
6 | PV = "0.1.0" | 6 | PV = "0.1.0" |
7 | 7 | ||
8 | SRC_URI = "file://fb.modes" | 8 | SRC_URI = "file://fb.modes" |
9 | S = "${WORKDIR}" | 9 | |
10 | S = "${WORKDIR}/sources" | ||
11 | UNPACKDIR = "${S}" | ||
10 | 12 | ||
11 | do_install() { | 13 | do_install() { |
12 | install -d ${D}${sysconfdir} | 14 | install -d ${D}${sysconfdir} |
13 | install -m 0644 ${WORKDIR}/fb.modes ${D}${sysconfdir} | 15 | install -m 0644 ${UNPACKDIR}/fb.modes ${D}${sysconfdir} |
14 | } | 16 | } |
15 | 17 | ||
16 | # fb.modes file is MACHINE_ARCH, base.bbclass correctly changes it to MACHINE_ARCH, but too late for allarch.bbclass | 18 | # fb.modes file is MACHINE_ARCH, base.bbclass correctly changes it to MACHINE_ARCH, but too late for allarch.bbclass |
diff --git a/meta-oe/recipes-support/libjs/libjs-jquery_3.3.1.bb b/meta-oe/recipes-support/libjs/libjs-jquery_3.3.1.bb index 9130b110a8..4f0d8e5548 100644 --- a/meta-oe/recipes-support/libjs/libjs-jquery_3.3.1.bb +++ b/meta-oe/recipes-support/libjs/libjs-jquery_3.3.1.bb | |||
@@ -10,7 +10,8 @@ SRC_URI[sha256sum] = "e04d192c2356e9d4c2b2c7d83fde9408713212b53c4d106e5b9e46c1a5 | |||
10 | JQUERYDIR = "${datadir}/javascript/jquery" | 10 | JQUERYDIR = "${datadir}/javascript/jquery" |
11 | JQUERYDOCDIR = "${docdir}/libjs-jquery" | 11 | JQUERYDOCDIR = "${docdir}/libjs-jquery" |
12 | 12 | ||
13 | S = "${WORKDIR}" | 13 | S = "${WORKDIR}/sources" |
14 | UNPACKDIR = "${S}" | ||
14 | 15 | ||
15 | do_install() { | 16 | do_install() { |
16 | install -d -m 0755 ${D}${JQUERYDIR} | 17 | install -d -m 0755 ${D}${JQUERYDIR} |
diff --git a/meta-oe/recipes-support/nmon/nmon_16m.bb b/meta-oe/recipes-support/nmon/nmon_16m.bb index d4a357cea0..1779dd2273 100644 --- a/meta-oe/recipes-support/nmon/nmon_16m.bb +++ b/meta-oe/recipes-support/nmon/nmon_16m.bb | |||
@@ -18,7 +18,8 @@ CFLAGS += "-D JFS -D GETUSER -Wall -D LARGEMEM" | |||
18 | LDFLAGS += "-ltinfo -lncursesw -lm" | 18 | LDFLAGS += "-ltinfo -lncursesw -lm" |
19 | ASNEEDED:pn-nmon = "" | 19 | ASNEEDED:pn-nmon = "" |
20 | 20 | ||
21 | S = "${WORKDIR}" | 21 | S = "${WORKDIR}/sources" |
22 | UNPACKDIR = "${S}" | ||
22 | 23 | ||
23 | do_compile() { | 24 | do_compile() { |
24 | ${CC} ${CFLAGS} ${LDFLAGS} lmon${PV}.c -o nmon | 25 | ${CC} ${CFLAGS} ${LDFLAGS} lmon${PV}.c -o nmon |
diff --git a/meta-oe/recipes-support/pxaregs/pxaregs_1.14.bb b/meta-oe/recipes-support/pxaregs/pxaregs_1.14.bb index b61fb026ca..09534c44fd 100644 --- a/meta-oe/recipes-support/pxaregs/pxaregs_1.14.bb +++ b/meta-oe/recipes-support/pxaregs/pxaregs_1.14.bb | |||
@@ -9,7 +9,8 @@ SRC_URI = "file://pxaregs.c \ | |||
9 | file://serial.patch \ | 9 | file://serial.patch \ |
10 | file://usb.patch " | 10 | file://usb.patch " |
11 | 11 | ||
12 | S = "${WORKDIR}" | 12 | S = "${WORKDIR}/sources" |
13 | UNPACKDIR = "${S}" | ||
13 | 14 | ||
14 | do_compile() { | 15 | do_compile() { |
15 | ${CC} pxaregs.c -o pxaregs ${CFLAGS} ${LDFLAGS} | 16 | ${CC} pxaregs.c -o pxaregs ${CFLAGS} ${LDFLAGS} |
diff --git a/meta-oe/recipes-test/testfloat/testfloat_3e.bb b/meta-oe/recipes-test/testfloat/testfloat_3e.bb index 48f50d8274..071be2a200 100644 --- a/meta-oe/recipes-test/testfloat/testfloat_3e.bb +++ b/meta-oe/recipes-test/testfloat/testfloat_3e.bb | |||
@@ -19,7 +19,8 @@ SRC_URI[TestFloat.sha256sum] = "6d4bdf0096b48a653aa59fc203a9e5fe18b5a58d7a1b7151 | |||
19 | SRC_URI[SoftFloat.md5sum] = "7dac954ea4aed0697cbfee800ba4f492" | 19 | SRC_URI[SoftFloat.md5sum] = "7dac954ea4aed0697cbfee800ba4f492" |
20 | SRC_URI[SoftFloat.sha256sum] = "21130ce885d35c1fe73fc1e1bf2244178167e05c6747cad5f450cc991714c746" | 20 | SRC_URI[SoftFloat.sha256sum] = "21130ce885d35c1fe73fc1e1bf2244178167e05c6747cad5f450cc991714c746" |
21 | 21 | ||
22 | S = "${WORKDIR}" | 22 | S = "${WORKDIR}/sources" |
23 | UNPACKDIR = "${S}" | ||
23 | 24 | ||
24 | do_compile(){ | 25 | do_compile(){ |
25 | oe_runmake -C SoftFloat-${PV}/build/Linux-Cross-Compile/ | 26 | oe_runmake -C SoftFloat-${PV}/build/Linux-Cross-Compile/ |