summarylogtreecommitdiffstats
path: root/build.sh
blob: 9fa9351c69aa90bb69e29a860db121716383147b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# Note: build still fails sometimes

set +e

./build

qmake-qt4
make

# Second run of qmake, needed for lib directory to be installed correctly
#qmake-qt4

set -e
exit 0