summaryrefslogtreecommitdiffstats
path: root/examples/gcc.yml
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-09-25 14:05:13 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-09-25 14:05:13 +0200
commit051442f17d618abeb77ada99c7e78c681426186c (patch)
treebca8c588a53aa777bcd650a81ca490c4907949cf /examples/gcc.yml
parent2156cd6a64b2a287cac5eafa21077506f62b9ed9 (diff)
downloadrebel-051442f17d618abeb77ada99c7e78c681426186c.tar
rebel-051442f17d618abeb77ada99c7e78c681426186c.zip
recipe: specify recipe and task name separately in dependencies
Diffstat (limited to 'examples/gcc.yml')
-rw-r--r--examples/gcc.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/examples/gcc.yml b/examples/gcc.yml
index 166ab22..3102fd6 100644
--- a/examples/gcc.yml
+++ b/examples/gcc.yml
@@ -24,7 +24,8 @@ tasks:
inherit:
task: 'unpack'
build_depends:
- - task: 'binutils:install'
+ - recipe: 'binutils'
+ task: 'install'
args:
target: 'target'
depends:
@@ -78,7 +79,8 @@ tasks:
inherit:
task: 'configure'
build_depends:
- - task: 'binutils:install'
+ - recipe: 'binutils'
+ task: 'install'
args:
target: 'target'
depends:
@@ -96,7 +98,8 @@ tasks:
output:
default:
runtime_depends:
- - task: 'binutils:install'
+ - recipe: 'binutils'
+ task: 'install'
run: |
cd gcc-build
make DESTDIR={{destdir}} install-host