diff options
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,8 +3,9 @@ include prelude.mk .SECONDEXPANSION: LIMIT ?= all +$(eval $(call noexpand,LIMIT)) -args := --inventory inventory.ini --limit '$(LIMIT)' +args := --inventory inventory.ini --limit '$(call escape,$(LIMIT))' .PHONY: all all: run |