1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
! get_latest_wx && error "Checking, downloading, or extracting failed." && exit 1
if [ "$latest_wx" != "$current_wx" ] ; then
consolelog "Building wxWidgets..."
! build_wx && error "Building wxWidgets failed" && exit 1
success "Built wxWidgets"
else
binary="$(find ./ -name 'wx-config')"
[ -n "$binary" ] && success "Found $binary, skipping building wxWidgets"
if [ -z "$binary" ] ; then
consolelog "Building wxWidgets..."
! build_wx && error "Building wxWidgets failed" && exit 1
binary="$(find ./ -name 'wx-config')"
[ -n "$binary" ] && success "Built wxWidgets"
[ -z "$binary" ] && error "Can't build wxWidgets" && exit 1
fi
fi
|