Skip to content

Commit

Permalink
package/go: fix a typo in CC and CXX env values
Browse files Browse the repository at this point in the history
This commit fixes a typo in variable names that caused CC and CXX
environment variables to be empty.

Signed-off-by: Michael Baudino <[email protected]>
Signed-off-by: Yann E. MORIN <[email protected]>
(cherry picked from commit 4e81152)
Signed-off-by: Peter Korsgaard <[email protected]>
  • Loading branch information
michaelbaudino authored and jacmet committed Dec 22, 2020
1 parent 5765074 commit 4cc3f97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/go/go.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down

0 comments on commit 4cc3f97

Please sign in to comment.