diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-02 00:14:49 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-02 00:14:49 +0100 |
commit | 22ddec8ed8eceb4c0989ea2084e7de0120b1fe04 (patch) | |
tree | 5a10ebcc73fb04eee780a8f8f3b67a3c3ea9b1b2 /Makefile | |
parent | Makefile: add reboot recipe (diff) | |
download | maintenance-22ddec8ed8eceb4c0989ea2084e7de0120b1fe04.tar.gz maintenance-22ddec8ed8eceb4c0989ea2084e7de0120b1fe04.zip |
Makefile: rename a variable
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -20,10 +20,10 @@ ifeq ($$(origin $(1)),command line) endif endef -limit ?= all -$(eval $(call noexpand,limit)) +LIMIT ?= all +$(eval $(call noexpand,LIMIT)) -args := --inventory inventory.ini --limit '$(call escape,$(limit))' +args := --inventory inventory.ini --limit '$(call escape,$(LIMIT))' .PHONY: all all: run |