guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: custom-gcc: Fix regex used for matching executables.


From: Danny Milosavljevic
Subject: 01/01: gnu: custom-gcc: Fix regex used for matching executables.
Date: Wed, 13 Jun 2018 19:31:19 -0400 (EDT)

dannym pushed a commit to branch staging
in repository guix.

commit a1a3b25dfe9ca3621d894b337c4b5fcef10ddc8f
Author: Alex Vong <address@hidden>
Date:   Thu Jun 14 01:29:08 2018 +0200

    gnu: custom-gcc: Fix regex used for matching executables.
    
    Fixes <https://bugs.gnu.org/31561>.
    
    * gnu/packages/gcc.scm (custom-gcc)[arguments]: Fix regex used for matching
    broken or conflicting executables.
    
    Signed-off-by: Danny Milosavljevic <address@hidden>
---
 gnu/packages/gcc.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 5012d9a..130c212 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -612,7 +612,7 @@ as the 'native-search-paths' field."
              (lambda* (#:key outputs #:allow-other-keys)
                (for-each delete-file
                          (find-files (string-append (assoc-ref outputs "out") 
"/bin")
-                                     ".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc.*)"))
+                                     
".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|gcc-.*)"))
                #t))))))))
 
 (define %generic-search-paths



reply via email to

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