summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Spies2015-12-24 07:58:21 -0330
committerLukas Spies2015-12-24 07:58:21 -0330
commitf890e4880ede87b23c437121e7e7613fdf2525a5 (patch)
tree990667ad1cc6d1b35bf82c298b8bb0a61fe97ebe
parentc647ab7aedbc1fe3569863ff062ee25f91f13bc4 (diff)
downloadaur-f890e4880ede87b23c437121e7e7613fdf2525a5.tar.gz
[1.3.23] remove '-j4' flag from make command
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d538009f50b8..fb2b5da82c6d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Thu Dec 24 10:12:09 UTC 2015
+# Thu Dec 24 11:28:03 UTC 2015
pkgbase = mingw-w64-graphicsmagick
pkgdesc = Image processing system (mingw-w64)
pkgver = 1.3.23
diff --git a/PKGBUILD b/PKGBUILD
index 3d20a856184d..6cf33b19aac7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -27,6 +27,8 @@ build() {
mkdir -p build-${_arch} && pushd build-${_arch}
+ export
+
### NOTE ###
# if you manage to get libltdl installed, you can add the flag '--with-modules' for support of synamically loaded modules
${_arch}-configure --enable-shared --without-x --with-quantum-depth=16 --with-threads
@@ -34,7 +36,7 @@ build() {
sed -i "s/\/usr\/include/\/usr\/${_arch}\/include/g" Makefile
sed -i "s/\/usr\/lib/\/usr\/${_arch}\/lib/g" Makefile
- make -j4
+ make
popd
done