summaryrefslogtreecommitdiffstats
path: root/examples/e2fsprogs.yml
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-09-28 20:15:35 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-09-29 20:51:34 +0200
commit227bfe9e5b16878dc9d26111f98aa39f1172714d (patch)
tree43a720601818a44221d31aaf8c44098333b3dfb0 /examples/e2fsprogs.yml
parent044be90f0fef4c57df985ba862e5f4cf1bb684b1 (diff)
downloadrebel-227bfe9e5b16878dc9d26111f98aa39f1172714d.tar
rebel-227bfe9e5b16878dc9d26111f98aa39f1172714d.zip
context: add platform relation variables
build_to_host, host_to_target and build_to_target describe how two platforms are related. cross_compile and sysroot are moved into this new structure. cross_compile is added to the toplevel scope as an alias for build_to_host.cross_compile, as most packages will only ever need this.
Diffstat (limited to 'examples/e2fsprogs.yml')
-rw-r--r--examples/e2fsprogs.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/e2fsprogs.yml b/examples/e2fsprogs.yml
index 2f3cbde..72a7695 100644
--- a/examples/e2fsprogs.yml
+++ b/examples/e2fsprogs.yml
@@ -18,12 +18,12 @@ tasks:
- recipe: 'toolchain'
task: 'depends'
run: |
- export CC={{host.cross_compile}}gcc
- export CXX={{host.cross_compile}}g++
- export AR={{host.cross_compile}}ar
- export NM={{host.cross_compile}}nm
- export RANLIB={{host.cross_compile}}ranlib
- export STRIP={{host.cross_compile}}strip
+ export CC={{cross_compile}}gcc
+ export CXX={{cross_compile}}g++
+ export AR={{cross_compile}}ar
+ export NM={{cross_compile}}nm
+ export RANLIB={{cross_compile}}ranlib
+ export STRIP={{cross_compile}}strip
mkdir e2fsprogs-build
cd e2fsprogs-build