From 051442f17d618abeb77ada99c7e78c681426186c Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 25 Sep 2021 14:05:13 +0200 Subject: recipe: specify recipe and task name separately in dependencies --- examples/toolchain.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'examples/toolchain.yml') diff --git a/examples/toolchain.yml b/examples/toolchain.yml index fea1ce4..863785c 100644 --- a/examples/toolchain.yml +++ b/examples/toolchain.yml @@ -6,8 +6,10 @@ tasks: output: default: runtime_depends: - - task: 'gcc:install' - - task: 'gcc-libs:install-gcc' + - recipe: 'gcc' + task: 'install' + - recipe: 'gcc-libs' + task: 'install-gcc' depends: args: @@ -15,8 +17,10 @@ tasks: output: default: runtime_depends: - - task: 'glibc:install' - - task: 'gcc-libs:install' + - recipe: 'glibc' + task: 'install' + - recipe: 'gcc-libs' + task: 'install' build: args: -- cgit v1.2.3