chrony/test/compilation/002-scanbuild
2018-03-13 10:46:57 +01:00

15 lines
283 B
Bash
Executable file

#!/bin/sh
cd ../..
for opts in \
"--host-system=Linux" \
"--host-system=NetBSD" \
"--host-system=FreeBSD" \
"--without-nettle" \
"--without-nettle --without-nss" \
"--without-nettle --without-nss --without-tomcrypt"
do
./configure $opts
scan-build make "$@" || exit 1
done