Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/go: fix a typo in CC and CXX env values
@ 2020-12-18  9:57 Michael Baudino
  2020-12-19 11:11 ` Yann E. MORIN
  2020-12-22 10:41 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Baudino @ 2020-12-18  9:57 UTC (permalink / raw)
  To: buildroot

This commit fixes a typo in variable names that caused CC and CXX
environment variables to be empty.

Signed-off-by: Michael Baudino <michael@baudi.no>
---
 package/go/go.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git package/go/go.mk package/go/go.mk
index d9f4905..cabbdc8 100644
--- package/go/go.mk
+++ package/go/go.mk
@@ -99,8 +99,8 @@ HOST_GO_HOST_ENV = \
 	$(HOST_GO_COMMON_ENV) \
 	GOARCH="" \
 	GOCACHE="$(HOST_GO_HOST_CACHE)" \
-	CC="$(HOST_CCNOCCACHE)" \
-	CXX="$(HOST_CXXNOCCACHE)" \
+	CC="$(HOSTCC_NOCCACHE)" \
+	CXX="$(HOSTCXX_NOCCACHE)" \
 	CGO_CFLAGS="$(HOST_CFLAGS)" \
 	CGO_CXXFLAGS="$(HOST_CXXFLAGS)" \
 	CGO_LDFLAGS="$(HOST_LDFLAGS)"
--
2.7.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-12-22 10:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-18  9:57 [Buildroot] [PATCH] package/go: fix a typo in CC and CXX env values Michael Baudino
2020-12-19 11:11 ` Yann E. MORIN
2020-12-19 11:38   ` Michael Baudino
2020-12-22 10:41 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox