mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 18:12:20 +01:00 
			
		
		
		
	Make HAS_GO a simply expanded variable (#24169)
Avoid recursive expansion on this variable and simplify the value. [Reference](https://www.gnu.org/software/make/manual/html_node/Setting.html).
This commit is contained in:
		
							parent
							
								
									cda84bec87
								
							
						
					
					
						commit
						4b1c6cd8e5
					
				
							
								
								
									
										4
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								Makefile
									
									
									
									
									
								
							| @ -20,7 +20,7 @@ IMPORT := code.gitea.io/gitea | |||||||
| 
 | 
 | ||||||
| GO ?= go | GO ?= go | ||||||
| SHASUM ?= shasum -a 256 | SHASUM ?= shasum -a 256 | ||||||
| HAS_GO = $(shell hash $(GO) > /dev/null 2>&1 && echo "GO" || echo "NOGO" ) | HAS_GO := $(shell hash $(GO) > /dev/null 2>&1 && echo yes) | ||||||
| COMMA := , | COMMA := , | ||||||
| 
 | 
 | ||||||
| XGO_VERSION := go-1.20.x | XGO_VERSION := go-1.20.x | ||||||
| @ -41,7 +41,7 @@ DOCKER_IMAGE ?= gitea/gitea | |||||||
| DOCKER_TAG ?= latest | DOCKER_TAG ?= latest | ||||||
| DOCKER_REF := $(DOCKER_IMAGE):$(DOCKER_TAG) | DOCKER_REF := $(DOCKER_IMAGE):$(DOCKER_TAG) | ||||||
| 
 | 
 | ||||||
| ifeq ($(HAS_GO), GO) | ifeq ($(HAS_GO), yes) | ||||||
| 	GOPATH ?= $(shell $(GO) env GOPATH) | 	GOPATH ?= $(shell $(GO) env GOPATH) | ||||||
| 	export PATH := $(GOPATH)/bin:$(PATH) | 	export PATH := $(GOPATH)/bin:$(PATH) | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user