summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorYen Chi Hsuan2018-01-23 13:07:47 +0800
committerYen Chi Hsuan2018-01-23 13:07:47 +0800
commitd05c8299a7899a3163b1a6ef1e72ec8c15f3d1ad (patch)
tree822787ab2176284bca17965cfe54b21dcfb8aea9
parente61d26228f7421c1e45172d67dfa2cd97740ca38 (diff)
downloadaur-d05c8299a7899a3163b1a6ef1e72ec8c15f3d1ad.tar.gz
Don't enable parallel builds by default
When -j$(nproc) is used, my build machine become unresponsive. A better value might be -j$(($(nproc) - 1)). Anyway determining the appropriate value is not the job of a package maintainer but for users/system administrators. Let it be done by /etc/makepkg.conf as usual. Ref: #15
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a3a8edde7938..520202061b6e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = webkitgtk
pkgdesc = Legacy Web content engine
pkgver = 2.4.11
- pkgrel = 10
+ pkgrel = 11
url = https://webkitgtk.org/
install = webkitgtk.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index b7f925ef4aea..e53b735c3e63 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgbase=webkitgtk
pkgname=(webkitgtk webkitgtk2)
pkgver=2.4.11
-pkgrel=10
+pkgrel=11
pkgdesc="Legacy Web content engine"
arch=(i686 x86_64)
url="https://webkitgtk.org/"
@@ -62,7 +62,7 @@ _build() (
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
- make -j$(nproc) all stamp-po
+ make all stamp-po
)
build() {