aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts
diff options
context:
space:
mode:
Diffstat (limited to '_posts')
-rw-r--r--_posts/2020-05-20-makefile-escaping.md6
1 files changed, 3 insertions, 3 deletions
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
-----------------