meson: use "sh -eu" and make .sh +x, .py -x

Shell scripts should be executable so that meson reports their
invocation succinctly (does not print 'sh' '-e').
Python scripts should not be executable so that meson does the
detection of the right python binary itself.

Add -u everywhere to catch potential errors.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2017-04-18 17:14:48 -04:00
parent a923e085af
commit 86b3ca7a66
14 changed files with 13 additions and 13 deletions

2
src/basic/generate-af-list.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -eu
$1 -E -dM -include sys/socket.h - </dev/null | \
grep -Ev 'AF_UNSPEC|AF_MAX' | \

2
src/basic/generate-arphrd-list.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
$1 -dM -include net/if_arp.h - </dev/null | \
awk '/^#define[ \t]+ARPHRD_[^ \t]+[ \t]+[^ \t]/ { print $2; }' | \

2
src/basic/generate-cap-list.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
$1 -dM -include linux/capability.h -include "$2" -include "$3" - </dev/null | \
awk '/^#define[ \t]+CAP_[A-Z_]+[ \t]+/ { print $2; }' | \

2
src/basic/generate-errno-list.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
$1 -dM -include errno.h - </dev/null | \
awk '/^#define[ \t]+E[^ _]+[ \t]+/ { print $2; }'

2
src/boot/efi/no-undefined-symbols.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
if nm -D -u "$1" | grep ' U '; then
echo "Undefined symbols detected!"

2
src/journal/generate-audit_type-list.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
cpp="$1"
shift

0
src/test/generate-sym-test.py Executable file → Normal file
View File

2
src/udev/generate-keyboard-keys-list.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
$1 -dM -include linux/input.h - </dev/null | \
awk '/^#define[ \t]+KEY_[^ ]+[ \t]+[0-9K]/ { if ($2 != "KEY_MAX") { print $2 } }'

2
tools/meson-check-compilation.sh Normal file → Executable file
View File

@ -1,3 +1,3 @@
#!/bin/sh -e
#!/bin/sh -eu
"$@" '-' '-c' -o/dev/null </dev/null

View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
# output width
if "$1" --help | grep -v 'default:' | grep -E -q '.{80}.'; then

2
tools/meson-git-contrib.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
git shortlog -s `git describe --abbrev=0`.. | \
cut -c8- | \

View File

@ -1,4 +1,4 @@
#!/bin/sh -ex
#!/bin/sh -eu
cd "$1"

2
tools/meson-make-symlink.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
# this is needed mostly because $DESTDIR is provided as a variable,
# and we need to create the target directory...

2
units/meson-add-wants.sh Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh -eu
unitdir="$1"
target="$2"