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 <dannym@scratchpost.org>
This commit is contained in:
parent
a8ef66f94d
commit
a1a3b25dfe
1 changed files with 1 additions and 1 deletions
|
@ -612,7 +612,7 @@ (define* (custom-gcc gcc name languages
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue