summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorFlorian Loitsch2021-12-14 14:18:54 +0100
committerFlorian Loitsch2021-12-14 14:18:54 +0100
commitcef0eb426e63bf6cfa2412b0c5a22eab0128ae48 (patch)
tree0d1709cce381d119f2e0aa5b3979b48cb8cd5cda /PKGBUILD
parent19dfcc73ced81834b100e477135c01089681ce1e (diff)
downloadaur-cef0eb426e63bf6cfa2412b0c5a22eab0128ae48.tar.gz
Don't call make in parallel.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 577cadc02ecd..0cb5961aa2b2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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() {