[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: openmw: Add Boost workaround.
From: |
guix-commits |
Subject: |
02/02: gnu: openmw: Add Boost workaround. |
Date: |
Thu, 18 Jul 2019 13:26:50 -0400 (EDT) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit e77947db06339a38979d9ef838ca9ed00d527db2
Author: Marius Bakke <address@hidden>
Date: Thu Jul 18 19:25:41 2019 +0200
gnu: openmw: Add Boost workaround.
* gnu/packages/game-development.scm (openmw)[arguments]: Set
"-DBoost_NO_BOOST_CMAKE=ON" in <#:configure-flags>.
---
gnu/packages/game-development.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/game-development.scm
b/gnu/packages/game-development.scm
index 7eac935..5a4b81a 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -1116,7 +1116,8 @@ of use.")
(arguments
`(#:tests? #f ; No test target
#:configure-flags
- (list "-DDESIRED_QT_VERSION=5")))
+ (list "-DDESIRED_QT_VERSION=5"
+ "-DBoost_NO_BOOST_CMAKE=ON"))) ;work around
<https://bugs.gnu.org/36721>
(native-inputs
`(("boost" ,boost)
("doxygen" ,doxygen)