diff options
author | Karel Kočí <cynerd@email.cz> | 2020-07-11 18:55:30 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-07-11 18:55:30 +0200 |
commit | 807fa7bd1ac2bcb18927a1e12e2602fc168c58c7 (patch) | |
tree | 1e5706b808b865faa7e8dc5186a6307f2f4e6d9c /templates | |
parent | 7ed748910f1927a55abdb52511c94f79435d9cd7 (diff) | |
download | laminar-cnf-807fa7bd1ac2bcb18927a1e12e2602fc168c58c7.tar.gz laminar-cnf-807fa7bd1ac2bcb18927a1e12e2602fc168c58c7.tar.bz2 laminar-cnf-807fa7bd1ac2bcb18927a1e12e2602fc168c58c7.zip |
turris: run every package build separately
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/turris.run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/turris.run b/templates/turris.run index b0ea26e..8bac1ff 100755 --- a/templates/turris.run +++ b/templates/turris.run @@ -54,7 +54,7 @@ find feeds/personal -type d -exec test -f '{}/Makefile' \; -prune -printf "%P\0" ./scripts/feeds install -p personal -d y -f -a echo_stage "Compile packages from personal feed" find package/feeds/personal -mindepth 1 -maxdepth 1 -printf 'package/%P/compile\0' | \ - xargs --null $make + xargs -n 1 --null $make echo_stage "Generate index and sign" $make package/index BUILD_KEY=~/openwrt-repo.sec |