mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
552 B
24 lines
552 B
![]()
5 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Generate configure and Makefile.in files
|
||
|
#
|
||
|
|
||
|
# Find the script directory, and cd to it. When the shell exits, we will be back where we were.
|
||
|
BASEDIR="$( cd "$(dirname "$0")" ; pwd -P )"
|
||
|
echo "Generating autotools files in: $BASEDIR ..."
|
||
|
cd $BASEDIR
|
||
|
|
||
|
# If this is a source checkout then call autoreconf with error as well
|
||
|
if test -d .git; then
|
||
|
WARNINGS="all,error"
|
||
|
else
|
||
|
WARNINGS="all"
|
||
|
fi
|
||
|
|
||
|
autoreconf -i -f
|
||
|
rc=$?; if [ $rc != 0 ]; then
|
||
|
echo "Error: Failed to generate autojunk!"; exit $rc
|
||
|
else
|
||
|
echo "You can now run ./configure"
|
||
|
fi
|