diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-06-25 22:40:08 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-06-25 22:56:41 -0400 |
commit | 31c85536f6104f369066ec7f6279f5c7fe41ebb4 (patch) | |
tree | 8124878cf0fde368dd10449088c5d1d78cdf1551 | |
parent | be0039855faef0f996966f3bc195ea418f2a40ab (diff) | |
download | meta-virtualization-31c85536f6104f369066ec7f6279f5c7fe41ebb4.tar.gz |
demo: adapt to UNPACKDIR changes
This commit updates the container recipes to the OE core UNPACKDIR
changes.
- We adjust destsuffix fetches to use BB_GIT_DEFAULT_DESTSUFFIX
instead of 'git'
- Drop S = assignemnts where possible
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-demo/helloworld-flask/helloworld-flask_0.1.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes-demo/helloworld-flask/helloworld-flask_0.1.bb b/recipes-demo/helloworld-flask/helloworld-flask_0.1.bb index 043ccc52..c19378ab 100644 --- a/recipes-demo/helloworld-flask/helloworld-flask_0.1.bb +++ b/recipes-demo/helloworld-flask/helloworld-flask_0.1.bb | |||
@@ -16,8 +16,7 @@ CONTAINERIMAGE ?= "zeddii/app-container:latest" | |||
16 | CONTAINERPORT ?= "9000" | 16 | CONTAINERPORT ?= "9000" |
17 | EXTERNALPORT ?= "10000" | 17 | EXTERNALPORT ?= "10000" |
18 | 18 | ||
19 | S = "${WORKDIR}/sources" | 19 | S = "${UNPACKDIR}" |
20 | UNPACKDIR = "${S}" | ||
21 | 20 | ||
22 | do_install() { | 21 | do_install() { |
23 | 22 | ||