aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-21 08:34:33 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-21 08:34:33 +0300
commit3a4ce35a3e1631e5b7958e6ed336bf7bcf454f5e (patch)
treea68f71b788f5568b42cf88fea708573e3a5c9047 /_posts
parentmakefile_escaping: unexport MAKEFLAGS (diff)
downloadblog-3a4ce35a3e1631e5b7958e6ed336bf7bcf454f5e.tar.gz
blog-3a4ce35a3e1631e5b7958e6ed336bf7bcf454f5e.zip
makefile_escaping: -o nounset
Diffstat (limited to '')
-rw-r--r--_posts/2020-05-20-makefile-escaping.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2020-05-20-makefile-escaping.md b/_posts/2020-05-20-makefile-escaping.md
index 81b5d1d..80dac27 100644
--- a/_posts/2020-05-20-makefile-escaping.md
+++ b/_posts/2020-05-20-makefile-escaping.md
@@ -23,7 +23,7 @@ unexport MAKEFLAGS
.DELETE_ON_ERROR:
.SUFFIXES:
SHELL := bash
-.SHELLFLAGS := -e -o pipefail -c
+.SHELLFLAGS := -eu -o pipefail -c
```
`make` invokes a shell program to execute recipes.