diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-10-22 16:32:52 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-11-15 19:50:00 +0000 |
commit | cbad7151f174fb5fb88aa8d062362e66dc34b5c3 (patch) | |
tree | 0cf6245b614ca5c2464014221faf17a838ea2c79 | |
parent | 3429c73a918afa9eb08770731b078f143c2b0bf9 (diff) | |
download | meta-virtualization-cbad7151f174fb5fb88aa8d062362e66dc34b5c3.tar.gz |
demos/helloworld: fix S and UNPACKDIR
Adapt the demonstration helloworld appliication to fix a warning
about UNPACKDIR not being correct.
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, 3 insertions, 0 deletions
diff --git a/recipes-demo/helloworld-flask/helloworld-flask_0.1.bb b/recipes-demo/helloworld-flask/helloworld-flask_0.1.bb index 3f5507b3..043ccc52 100644 --- a/recipes-demo/helloworld-flask/helloworld-flask_0.1.bb +++ b/recipes-demo/helloworld-flask/helloworld-flask_0.1.bb | |||
@@ -16,6 +16,9 @@ CONTAINERIMAGE ?= "zeddii/app-container:latest" | |||
16 | CONTAINERPORT ?= "9000" | 16 | CONTAINERPORT ?= "9000" |
17 | EXTERNALPORT ?= "10000" | 17 | EXTERNALPORT ?= "10000" |
18 | 18 | ||
19 | S = "${WORKDIR}/sources" | ||
20 | UNPACKDIR = "${S}" | ||
21 | |||
19 | do_install() { | 22 | do_install() { |
20 | 23 | ||
21 | for tgt in flask-app.yaml flask-app-service.yaml; do | 24 | for tgt in flask-app.yaml flask-app-service.yaml; do |