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

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

bug#49432: closed ([PATCH] gnu: gccgo: Override empty GOROOT/GCCGOTOOLDI


From: GNU bug Tracking System
Subject: bug#49432: closed ([PATCH] gnu: gccgo: Override empty GOROOT/GCCGOTOOLDIR)
Date: Tue, 07 Dec 2021 13:31:01 +0000

Your message dated Tue, 7 Dec 2021 15:27:00 +0200
with message-id <Ya9hJKRNY8Lq/UIM@3900XT>
and subject line Re: [bug#49432] [PATCH] gnu: gccgo: Override empty 
GOROOT/GCCGOTOOLDIR
has caused the debbugs.gnu.org bug report #49432,
regarding [PATCH] gnu: gccgo: Override empty GOROOT/GCCGOTOOLDIR
to be marked as done.

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


-- 
49432: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=49432
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: gccgo: Override empty GOROOT/GCCGOTOOLDIR Date: Tue, 6 Jul 2021 00:30:32 -0700
gnu/packages/gcc.scm (make-gccgo)[arguments]: Set tool paths
(GOROOT and GCCGOTOOLDIR) even if they are already set to "".
---
Hello all,

It turns out some tools use

  GOROOT='' go env GOROOT

to find Go, which was breaking with Gccgo. This little patch fixes that.

As for the commit title, I wasn't sure if "gnu: gccgo" or "gnu: make-gccgo"
was more appropriate here... there aren't a lot of examples in the commit log!

Thanks,
Sarah

 gnu/packages/gcc.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 2fe30b1321..02d6824a99 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -871,9 +871,9 @@ provides the GNU compiler for the Go programming language.")
                         (tooldir (dirname (car (find-files exedir "^cgo$")))))
                    (wrap-program (string-append out "/bin/go")
                      `("GCCGOTOOLDIR" =
-                       (,(string-append "${GCCGOTOOLDIR-" tooldir "}")))
+                       (,(string-append "${GCCGOTOOLDIR:-" tooldir "}")))
                      `("GOROOT" =
-                       (,(string-append "${GOROOT-" out "}")))))))
+                       (,(string-append "${GOROOT:-" out "}")))))))
              (add-before 'configure 'fix-gotools-runpath
                (lambda _
                  (substitute* "gotools/Makefile.in"

base-commit: aa6e6fb2e9ea231d12d49a8925fddd8d2686ea94
-- 
2.31.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#49432] [PATCH] gnu: gccgo: Override empty GOROOT/GCCGOTOOLDIR Date: Tue, 7 Dec 2021 15:27:00 +0200
Looks like this got dropped somewhere. Patch pushed!

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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