Files
cve-check-tool/autogen.sh
T
2015-04-10 14:46:05 +01:00

15 lines
252 B
Bash
Executable File

#!/bin/sh
set -e
autoreconf --force --install --symlink --warnings=all
args="\
--sysconfdir=/etc \
--localstatedir=/var \
--prefix=/usr \
--enable-silent-rules"
./configure CFLAGS="-g -O1 -Wall -W -D_FORTIFY_SOURCE=2 $CFLAGS" $args "$@"
make clean