This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 003d53a234 gnu: ansel: Disable -march=native.
003d53a234 is described below

commit 003d53a23485ba6f5245f8a09f274227573fd9a7
Author: Andreas Enge <[email protected]>
AuthorDate: Fri Aug 1 11:28:07 2025 +0200

    gnu: ansel: Disable -march=native.
    
    This was enabled through a check for BINARY_PACKAGE_BUILD in
    cmake/march-mtune.cmake.
    
    * gnu/packages/photo.scm (ansel)[arguments]<#:configure-flags>:
    Add -DBINARY_PACKAGE_BUILD=ON.
    
    Fixes: guix/guix#1731
    Change-Id: I30cc346431adfdf7ec60f9a78be861e21c7e462d
---
 gnu/packages/photo.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm
index 920ae37a78..673979d1d8 100644
--- a/gnu/packages/photo.scm
+++ b/gnu/packages/photo.scm
@@ -678,7 +678,9 @@ and enhance them.")
       (arguments
        (list
         #:tests? #f ;Tests are only examples
-        #:configure-flags #~(list "-DUSE_BUNDLED_LIBRAW=OFF")
+        #:configure-flags
+          #~(list "-DUSE_BUNDLED_LIBRAW=OFF"
+                  "-DBINARY_PACKAGE_BUILD=ON")
         #:build-type "Release")) ;Rawspeed fails on default 'RelWithDebInfo'
       (native-inputs
        (list cmocka

Reply via email to