diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 15:06:13 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 15:06:47 -0500 |
commit | 920216f15cb5742123a9cac1dd03d5647550d440 (patch) | |
tree | 2b2e68105d181dc91a4287f4ae648dfe63e5307f | |
parent | 6569c0a12c080c30bb3929abbd7f7cfd1868488c (diff) | |
download | sbpython3-920216f15cb5742123a9cac1dd03d5647550d440.tar.bz2 sbpython3-920216f15cb5742123a9cac1dd03d5647550d440.tar.xz |
build system: pkgconf.sh: be strict (set -eu).
-rwxr-xr-x | sofort/tools/pkgconf.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sofort/tools/pkgconf.sh b/sofort/tools/pkgconf.sh index a37e368..614fdec 100755 --- a/sofort/tools/pkgconf.sh +++ b/sofort/tools/pkgconf.sh @@ -1,5 +1,7 @@ #!/bin/sh +set -eu + # prefix, exec_prefix if [ "$PKGCONF_PREFIX" = "$PKGCONF_EXEC_PREFIX" ]; then pkgconf_prefix="${PKGCONF_PREFIX}" |