diff options
author | Oliver Smith <osmith@sysmocom.de> | 2019-04-04 08:16:44 +0200 |
---|---|---|
committer | Oliver Smith <osmith@sysmocom.de> | 2019-04-04 08:16:44 +0200 |
commit | 052fe1bb8af2a506dcf416f6017530057242d379 (patch) | |
tree | b151c0cbba763226081e00c9a173a021eceed46f | |
parent | a8be3ff52fb209b7ea319632908bb27373482ceb (diff) |
make/Makefile: fix recursive 'PULL' error
Don't abort with the following error, when running 'make' without
setting the PULL environment variable:
../make/Makefile:20: *** Recursive variable 'PULL' references itself (eventually). Stop.
This fixes a regression from Change-Id
I1076bbb7d77bdc99f5d60d641c09ce965fb9dfc6.
Related: OS#3869
Change-Id: I4b4772e9ed6e07ab00943154265c9cbdea22a2f5
-rw-r--r-- | make/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/Makefile b/make/Makefile index d4e3c22..7dfa795 100644 --- a/make/Makefile +++ b/make/Makefile @@ -17,7 +17,7 @@ REGISTRY_HOST?=docker.io USERNAME?=$(USER) NAME?=$(shell basename $(CURDIR)) OSMO_TTCN3_BRANCH?=master -PULL?=$(PULL) +PULL?= RELEASE_SUPPORT := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))/.make-release-support IMAGE?=$(REGISTRY_HOST)/$(USER)/$(NAME) |