summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLone_Wolf2022-06-16 12:31:28 +0200
committerLone_Wolf2022-06-16 12:31:28 +0200
commit41187d1fb79a3e1ca096f8621b72a69817d3fb21 (patch)
tree90f5f3daf57bf12dbea143c96ffb89b59c499c44
parentf67fc4bc498925eb8730062713d499d67c08b62e (diff)
downloadaur-41187d1fb79a3e1ca096f8621b72a69817d3fb21.tar.gz
clean chroot build fails unless options=(!lto) is used
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD4
2 files changed, 5 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2093f42786bf..b0d2a2ea1773 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = openmw-git
pkgdesc = An open-source engine reimplementation for the role-playing game Morrowind.
- pkgver = 0.47.0.r2262.gc23ca2e88
+ pkgver = 0.47.0.r2799.g28c97c22b9
pkgrel = 1
url = http://www.openmw.org
arch = i686
@@ -27,6 +27,7 @@ pkgbase = openmw-git
optdepends = openscenegraph-openmw-git: experimental performance enhancements for OpenMW that are too controversial to be included in the general purpose OSG project
provides = openmw
conflicts = openmw
+ options = !lto
source = git+https://gitlab.com/OpenMW/openmw.git
sha1sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 6dfe6e0af96c..ba4321135f1d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,5 +1,5 @@
pkgname=openmw-git
-pkgver=0.47.0.r2262.gc23ca2e88
+pkgver=0.47.0.r2799.g28c97c22b9
pkgrel=1
pkgdesc="An open-source engine reimplementation for the role-playing game Morrowind."
arch=('i686' 'x86_64')
@@ -13,6 +13,8 @@ conflicts=("${pkgname%-git}")
provides=("${pkgname%-git}")
source=('git+https://gitlab.com/OpenMW/openmw.git')
sha1sums=('SKIP')
+# build breaks with clean chroot build using devtools without disabling lto explicitly, see https://bbs.archlinux.org/viewtopic.php?id=277304
+options=(!lto)
pkgver() {
cd "${srcdir}/${pkgname%-git}"