guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates updated: gnu: perl: Only add coreutils-minimal when


From: guix-commits
Subject: branch core-updates updated: gnu: perl: Only add coreutils-minimal when cross-building.
Date: Sun, 06 Nov 2022 03:19:23 -0500

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

efraim pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new af4f71318a gnu: perl: Only add coreutils-minimal when cross-building.
af4f71318a is described below

commit af4f71318a56fd3b42910923cbf7cff71be59b38
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Nov 6 10:18:11 2022 +0200

    gnu: perl: Only add coreutils-minimal when cross-building.
    
    * gnu/packages/perl.scm (perl)[inputs]: Only add coreutils-minimal when
    cross-building.
---
 gnu/packages/perl.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index dea2e138cb..20c927c7c4 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -231,10 +231,9 @@
                                              "/lib',\n"))))
                          config2)))))))
     (inputs
-     (append (list coreutils-minimal)
-             (if (%current-target-system)
-                 (list bash-minimal)
-                 '())))
+     (if (%current-target-system)
+       (list bash-minimal coreutils-minimal)
+       '()))
     (native-inputs
      (if (%current-target-system)
          `(("perl-cross"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]