From ca4f42c22c4fb73c2dc13091f6db63c656f42353 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 27 Apr 2022 10:37:20 +0200 Subject: makefile_escaping: shorter variable names --- _posts/2020-05-20-makefile-escaping.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '_posts') diff --git a/_posts/2020-05-20-makefile-escaping.md b/_posts/2020-05-20-makefile-escaping.md index f8db9a0..4190fff 100644 --- a/_posts/2020-05-20-makefile-escaping.md +++ b/_posts/2020-05-20-makefile-escaping.md @@ -74,10 +74,10 @@ on the command line), add the following lengthy snippet: Then `eval` the `noexpand` function output for every possibly overridden variable or a used environment variable: - param_with_default_value ?= Default value - $(eval $(call noexpand,param_with_default_value)) + has_default ?= Default value + $(eval $(call noexpand,has_default)) - $(eval $(call noexpand,used_environment_variable)) + $(eval $(call noexpand,ENV_VAR)) Quoting arguments ----------------- -- cgit v1.2.3