summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Merry2015-10-20 18:41:02 +0100
committerAlex Merry2015-10-20 18:42:00 +0100
commitcd37fae7360cf67fbba061d4ba1c36835374ccd9 (patch)
treed4ccd651f8dacd81d07f98e8fa5a19d392efee82
parente411de993710ba810e3fdcb87b1daf6670acb3f4 (diff)
downloadaur-cd37fae7360cf67fbba061d4ba1c36835374ccd9.tar.gz
Force make to not run in parallel.
Tikzit's build system breaks with parallel builds.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 59e2500f97b1..d1420a6dbd74 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = tikzit
pkgdesc = Allows the creation and modification of TeX diagrams written using the pgf/TikZ macro library
pkgver = 1.1
- pkgrel = 1
+ pkgrel = 2
url = http://tikzit.github.io
install = tikzit.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index 7c6d33fdb11f..bcf4d459e6f9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=tikzit
pkgver=1.1
-pkgrel=1
+pkgrel=2
pkgdesc="Allows the creation and modification of TeX diagrams written using the pgf/TikZ macro library"
arch=('i686' 'x86_64')
url="http://tikzit.github.io"
@@ -20,7 +20,7 @@ build() {
cd "$srcdir/$pkgname-$pkgver/tikzit"
./autogen.sh
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
- make || return 1
+ make -j1 || return 1
}
package() {