diff options
author | Karel Kočí <karel.koci@nic.cz> | 2018-08-27 14:04:55 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2018-08-27 14:04:55 +0200 |
commit | e7c1cd6f4320a1fe7949aead660c1128a703c1b0 (patch) | |
tree | 0e17b6e853b518dacd6dc757d5539795d73f1d4c | |
parent | 512dc9cc31afd43360ffa957cc50cc4683163e3a (diff) | |
download | laminar-cnf-e7c1cd6f4320a1fe7949aead660c1128a703c1b0.tar.gz laminar-cnf-e7c1cd6f4320a1fe7949aead660c1128a703c1b0.tar.bz2 laminar-cnf-e7c1cd6f4320a1fe7949aead660c1128a703c1b0.zip |
turris4x: fix list of packages to be compiled
-rwxr-xr-x | templates/turris4x.run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/turris4x.run b/templates/turris4x.run index 9980108..f4a61b5 100755 --- a/templates/turris4x.run +++ b/templates/turris4x.run @@ -26,7 +26,7 @@ echo_stage "Compile tools" make -j4 tools/compile toolchain/compile echo_stage "Compile packages from our feed" -make -j4 $(./scripts/feeds list -r turrispackages | sed -n 's/^\([^ ]*\).*$/package\/\1\/compile/p' | tr '\n' ' ') +make -j4 $(./scripts/feeds list -r personal | sed -n 's/^\([^ ]*\).*$/package\/\1\/compile/p' | tr '\n' ' ') # TODO is there Packages index? Where the hack it is? #echo_stage "Sign" |