mirror of
https://gitlab.com/chrony/chrony.git
synced 2025-12-04 17:05:07 -05:00
15 lines
227 B
Bash
Executable File
15 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ../..
|
|
|
|
for opts in \
|
|
"--host-system=Linux" \
|
|
"--host-system=NetBSD" \
|
|
"--host-system=FreeBSD" \
|
|
"--without-nss" \
|
|
"--without-tomcrypt --without-nss"
|
|
do
|
|
./configure $opts
|
|
scan-build make "$@" || exit 1
|
|
done
|