bmon/.travis/run.sh
Thomas Graf 6920af805c travis: Run make distcheck
Signed-off-by: Thomas Graf <tgraf@suug.ch>
2014-08-30 13:32:49 +02:00

10 lines
187 B
Bash
Executable File

#!/bin/bash
FLAGS="-Werror"
if [ $CC = "clang" ]; then
FLAGS="$FLAGS -Wno-error=unused-command-line-argument"
fi
./autogen.sh && ./configure && make CFLAGS="$FLAGS" && make distcheck