summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoracerix2017-01-04 17:31:34 -0500
committeracerix2017-01-04 17:31:34 -0500
commit84a0bca188cdff42741b873c8a553a4dd6f25e1c (patch)
tree8974e171d3bbfa0d8b8ac250aa61e3106d24a52d
parent08c752007d58ef4a951b1f6310ca9d14b5791bcf (diff)
downloadaur-84a0bca188cdff42741b873c8a553a4dd6f25e1c.tar.gz
add make flag -j1 to fix firsttime compile
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f463cce2022e..3adf40a86008 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Wed Jan 4 18:54:17 UTC 2017
+# Wed Jan 4 22:31:33 UTC 2017
pkgbase = unreal-engine
pkgdesc = A 3D game engine by Epic Games which can be used non-commercially for free.
pkgver = 4.14.2
diff --git a/PKGBUILD b/PKGBUILD
index f798f3fcddca..ebf31e8cb473 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -52,7 +52,8 @@ build() {
# this should work instead of "git clean", but something leftover causes crashes
#make ARGS=-clean
- make
+ # first build fails with more than one process
+ make -j1
# delete windows-only files
#find \( -iname "Win64" -o -iname "vs2013" -o -iname "vs2015" \) -type d -prune -exec rm -r "{}" \;