mirror of
https://github.com/clearlinux/cve-check-tool.git
synced 2026-08-19 11:56:29 +00:00
9bb8a3a879
Signed-off-by: Ikey Doherty <michael.i.doherty@intel.com>
15 lines
252 B
Bash
Executable File
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
|