tmux/.github/travis/build.sh

10 lines
148 B
Bash
Raw Normal View History

2020-05-03 10:09:36 +00:00
#!/bin/sh
sh autogen.sh || exit 1
if [ "$BUILD" = "static" ]; then
./configure --enable-static || exit 1
else
./configure || exit 1
fi
exec make