summaryrefslogtreecommitdiff
path: root/.travis/build-cross-in-container.sh
blob: a7f672e6cfedf3ae561fa254571f75424e3afdab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

cd /opt

set -x
echo $PATH
export PATH=/usr/local/bin:$PATH
echo $PATH

./configure --host=${HOST}
make
make dist
make check RUNTESTFLAGS="-a $RUNTESTFLAGS" || true