ab5c381 ^
1 2 3 4 5 6 7 8 9 10 11 12 13
#!/bin/sh cd -- "$(dirname -- "$0")" status=0 for cmd in \ new-syscalls \ new-accept4-flags \ new-access-flags do if ! ./$cmd; then status=1 fi done exit $status