diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 15:06:13 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 15:06:13 -0500 |
commit | e609175ad4e9fe026df6a54c42ab033623faa1fb (patch) | |
tree | b793208abdcf5c77627dba68e277dd19591c85e9 | |
parent | 9a46b05480df898e48b0f3a678d1959d743e1bc0 (diff) | |
download | sofort-e609175ad4e9fe026df6a54c42ab033623faa1fb.tar.bz2 sofort-e609175ad4e9fe026df6a54c42ab033623faa1fb.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}" |