diff options
author | Florian Loitsch | 2021-12-14 14:18:54 +0100 |
---|---|---|
committer | Florian Loitsch | 2021-12-14 14:18:54 +0100 |
commit | cef0eb426e63bf6cfa2412b0c5a22eab0128ae48 (patch) | |
tree | 0d1709cce381d119f2e0aa5b3979b48cb8cd5cda /PKGBUILD | |
parent | 19dfcc73ced81834b100e477135c01089681ce1e (diff) | |
download | aur-cef0eb426e63bf6cfa2412b0c5a22eab0128ae48.tar.gz |
Don't call make in parallel.
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ # Maintainer: Florian Loitsch <florian@toit.io> pkgname=toit-git pkgver=VERSION -pkgrel=2 +pkgrel=3 pkgdesc="Toit programming language SDK" arch=('x86_64') url="https://toitlang.org" @@ -34,7 +34,7 @@ prepare() { build() { cd "$srcdir/${pkgname%-git}" - IDF_PATH=third_party/esp-idf make tools + IDF_PATH=third_party/esp-idf make -j1 tools } package() { |