summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukeLR2020-01-28 10:49:44 +0100
committerLukeLR2020-01-28 10:49:44 +0100
commitaff6fde0755d450b2633692792f2f9dc9a81028b (patch)
treebf9775775246d3247bec66ed2271a314720f4571
parent4cd914529db800b966f8c882f877c44709be29e4 (diff)
downloadaur-aff6fde0755d450b2633692792f2f9dc9a81028b.tar.gz
Fixed bug when using multithreaded make
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4216f1f1d22e..037c6e10ea6f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = geany-plugin-jsonprettifier
pkgdesc = Clean up unformatted JSON in Geany editor
pkgver = 1.6.0
- pkgrel = 1
+ pkgrel = 2
url = https://plugins.geany.org/jsonprettifier.html
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 2e4d19642655..e42cf28f5bfd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Lukas Rose <public@lrose.de>
pkgname=geany-plugin-jsonprettifier
pkgver=1.6.0
-pkgrel=1
+pkgrel=2
pkgdesc="Clean up unformatted JSON in Geany editor"
arch=('i686' 'x86_64')
url="https://plugins.geany.org/jsonprettifier.html"
@@ -25,5 +25,5 @@ build() {
package() {
cd "Geany-JSON-Prettifier-$pkgver"
mkdir -p "$pkgdir/usr/lib/geany"
- make DESTDIR="$pkgdir/" install
+ make -j1 DESTDIR="$pkgdir/" install
}