File: 002-scanbuild

package info (click to toggle)
chrony 4.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,780 kB
  • sloc: ansic: 38,349; sh: 5,876; yacc: 862; makefile: 232
file content (17 lines) | stat: -rwxr-xr-x 376 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

cd ../..

for opts in \
	"--enable-debug" \
	"--host-system=Linux" \
	"--host-system=NetBSD" \
	"--host-system=FreeBSD" \
	"--without-nettle" \
	"--without-nettle --without-gnutls" \
	"--without-nettle --without-gnutls --without-nss" \
	"--without-nettle --without-gnutls --without-nss --without-tomcrypt"
do
	./configure $opts
	scan-build make "$@" || exit 1
done