diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2024-08-03 10:37:07 +0200 |
---|---|---|
committer | Max Krummenacher <max.krummenacher@toradex.com> | 2024-08-03 10:37:07 +0200 |
commit | e61ab232b0be21c9180b924a6de45b1dd9f42678 (patch) | |
tree | 5906f96091c43b3f981b9e12d90409e262fe55e9 | |
parent | 47a484a676b8f4e8b7e383cbee59923cf8718dea (diff) |
media-files: fix setting S
The handling of using a subdirectory in the unpacked tar ball was
not used when using the new unpack directory.
The build fails with the error:
| ERROR: media-files-1.3-r0 do_populate_lic: QA Issue: media-files: LIC_FILES_CHKSUM points to an invalid file: .../sources-unpack/../CC0-1.0 [license-checksum]
Fixes: 48fb6ae80a1a ("recipes: cope with moved directory for unpack")
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r-- | recipes-multimedia/media-files/media-files_1.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-multimedia/media-files/media-files_1.3.bb b/recipes-multimedia/media-files/media-files_1.3.bb index f5a7cd52..4dd255e6 100644 --- a/recipes-multimedia/media-files/media-files_1.3.bb +++ b/recipes-multimedia/media-files/media-files_1.3.bb @@ -8,7 +8,7 @@ SRC_URI = "https://docs1.toradex.com/114780-media-files-${PV}.tar.xz" SRC_URI[sha256sum] = "d6a3cd2003798fec80fb8008d2e48a5fa2c581f4ae66c03cd573d33b18341e67" -S = "${UNPACKDIR}" +S = "${UNPACKDIR}/media-files" # Install the files to ${D}${ROOT_HOME} # Source code of original poky function: |