echo "Entering directory ${LIBDIR}/apr-util"
cd ${LIBDIR}/apr-util
- if [ "${BGJOB}" = "false" ]; then
+ if ! ${BGJOB}; then
./buildconf
else
./buildconf &
for i in ${SUBDIRS}; do
case "$i" in
apr|fs|libzrtp)
- [ "${BGJOB}" = "true" ] && wait
- bootstrap_$i && continue
+ ${BGJOB} && wait
+ bootstrap_$i
+ continue
;;
esac
- if [ "${BGJOB}" = "false" ]; then
+ if ! ${BGJOB}; then
libbootstrap ${i}
else
libbootstrap ${i} &
check_libtoolize
print_autotools_vers
bootstrap_libs
- if [ "${BGJOB}" = "true" ]; then
+ if ${BGJOB}; then
wait
fi
}