From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55091) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dcxxD-0001M6-7b for guix-patches@gnu.org; Wed, 02 Aug 2017 14:01:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dcxx8-0007cv-BQ for guix-patches@gnu.org; Wed, 02 Aug 2017 14:01:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36041) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dcxx8-0007cr-8H for guix-patches@gnu.org; Wed, 02 Aug 2017 14:01:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dcxx7-0005QS-S6 for guix-patches@gnu.org; Wed, 02 Aug 2017 14:01:01 -0400 Subject: [bug#27921] [PATCH] gnu: openscenegraph: Add 'Release' configure flag. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54902) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dcxwc-0001Ck-Ig for guix-patches@gnu.org; Wed, 02 Aug 2017 14:00:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dcxwX-0007PD-Mw for guix-patches@gnu.org; Wed, 02 Aug 2017 14:00:30 -0400 Received: from mail-wm0-x22a.google.com ([2a00:1450:400c:c09::22a]:37320) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dcxwX-0007Nl-GE for guix-patches@gnu.org; Wed, 02 Aug 2017 14:00:25 -0400 Received: by mail-wm0-x22a.google.com with SMTP id t201so48259725wmt.0 for ; Wed, 02 Aug 2017 11:00:23 -0700 (PDT) From: manolis837@gmail.com Date: Wed, 2 Aug 2017 21:00:17 +0300 Message-Id: <20170802180017.15507-1-manolis837@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27921@debbugs.gnu.org From: Manolis Ragkousis * gnu/packages/graphics.scm (openscenegraph)[arguments]: Add "-DCMAKE_BUILD_TYPE=Release". --- gnu/packages/graphics.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 6c813e8a3..d0e50106f 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -339,7 +339,11 @@ visual effects work for film.") #:configure-flags (list (string-append "-DCMAKE_INSTALL_RPATH=" (assoc-ref %outputs "out") "/lib:" - (assoc-ref %outputs "out") "/lib64")))) + (assoc-ref %outputs "out") "/lib64") + ;; We need to set this flag or otherwise 'rd' will be added + ;; to the name of the library binaries and break linking + ;; with other programs. + "-DCMAKE_BUILD_TYPE=Release"))) (native-inputs `(("unzip" ,unzip))) (inputs -- 2.13.3