tmux/.github/travis/build.sh
2020-05-03 11:09:36 +01:00

10 lines
148 B
Bash

#!/bin/sh
sh autogen.sh || exit 1
if [ "$BUILD" = "static" ]; then
./configure --enable-static || exit 1
else
./configure || exit 1
fi
exec make