emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#49010: closed ([PATCH core-updates] gnu: custom-gcc: Update regex fo


From: GNU bug Tracking System
Subject: bug#49010: closed ([PATCH core-updates] gnu: custom-gcc: Update regex for removing executables.)
Date: Mon, 05 Jul 2021 11:13:02 +0000

Your message dated Mon, 05 Jul 2021 13:12:35 +0200
with message-id <87wnq5t3oc.fsf@gnu.org>
and subject line Re: bug#49010: [PATCH core-updates] gnu: custom-gcc: Update 
regex for removing executables.
has caused the debbugs.gnu.org bug report #49010,
regarding [PATCH core-updates] gnu: custom-gcc: Update regex for removing 
executables.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
49010: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=49010
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH core-updates] gnu: custom-gcc: Update regex for removing executables. Date: Sun, 13 Jun 2021 14:01:25 -0700
Do not match "gccgo". Match "gcov-dump" and "gcov-tool", as well as
"lto-dump" (which was introduced in GCC 10).

* gnu/packages/gcc.scm (custom-gcc)[arguments]: Update regex used for
matching broken or conflicting executables.
---
 gnu/packages/gcc.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 5d114dca87..621b4a1200 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -716,9 +716,10 @@ as the 'native-search-paths' field."
         `(modify-phases ,phases
            (add-after 'install 'remove-broken-or-conflicting-files
              (lambda* (#:key outputs #:allow-other-keys)
-               (for-each delete-file
-                         (find-files (string-append (assoc-ref outputs "out") 
"/bin")
-                                     
".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|gcc-.*)"))))))))))
+               (for-each
+                delete-file
+                (find-files (string-append (assoc-ref outputs "out") "/bin")
+                            
".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|lto)(-.*)?$"))))))))))
 
 (define %generic-search-paths
   ;; This is the language-neutral search path for GCC.  Entries in $CPATH are
-- 
2.31.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#49010: [PATCH core-updates] gnu: custom-gcc: Update regex for removing executables. Date: Mon, 05 Jul 2021 13:12:35 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Hi,

Sarah Morgensen <iskarian@mgsn.dev> skribis:

> Do not match "gccgo". Match "gcov-dump" and "gcov-tool", as well as
> "lto-dump" (which was introduced in GCC 10).
>
> * gnu/packages/gcc.scm (custom-gcc)[arguments]: Update regex used for
> matching broken or conflicting executables.

Applied to ‘core-updates’.

Thanks, and sorry for the delay!

Ludo’.


--- End Message ---

reply via email to

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