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 /meta-oe/recipes-support | |
| 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>
Diffstat (limited to 'meta-oe/recipes-support')
| -rw-r--r-- | meta-oe/recipes-support/fbset/fbset-modes.bb | 6 | ||||
| -rw-r--r-- | meta-oe/recipes-support/libjs/libjs-jquery_3.3.1.bb | 3 | ||||
| -rw-r--r-- | meta-oe/recipes-support/nmon/nmon_16m.bb | 3 | ||||
| -rw-r--r-- | meta-oe/recipes-support/pxaregs/pxaregs_1.14.bb | 3 |
4 files changed, 10 insertions, 5 deletions
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} |
