From 610979ed3a25faec6b91dc2b11b9a9f1e3c53ca3 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 18 Apr 2023 16:24:30 +0300 Subject: [PATCH] gnu: openmw-scenegraph: Fix build. * gnu/packages/graphics.scm (openmw-scenegraph)[outputs]: Only use 'out' output. [arguments]: Delete inherited 'copy-plugins phase. --- gnu/packages/graphics.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index e059e1afcf..5a0ca540fd 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2015 Tomáš Čech ;;; Copyright © 2016, 2019 Leo Famulari ;;; Copyright © 2016, 2017, 2019 Ricardo Wurmus -;;; Copyright © 2016, 2018, 2021 Efraim Flashner +;;; Copyright © 2016, 2018, 2021, 2023 Efraim Flashner ;;; Copyright © 2016 Andreas Enge ;;; Copyright © 2017 Manolis Fragkiskos Ragkousis ;;; Copyright © 2017, 2018 Ben Woodcroft @@ -1453,6 +1453,7 @@ (define-public openmw-openscenegraph (package (inherit openscenegraph) (version (git-version "3.6" "1" commit)) + (outputs (list "out")) (source (origin (method git-fetch) @@ -1478,7 +1479,10 @@ (define-public openmw-openscenegraph "-DBUILD_OSG_DEPRECATED_SERIALIZERS=0" ;; The jpeg plugin requires conversion between integers and booleans "-DCMAKE_CXX_FLAGS=-fpermissive") - #$flags)))))))) + #$flags)) + ((#:phases phases) + #~(modify-phases #$phases + (delete 'copy-plugins))))))))) (define-public povray (package