}
bootstrap_libs_pre() {
- case "$i" in
+ case "$1" in
ldns)
# This file shouldn't even be in the tree as it's autogenerated
# during bootstrap, but some people report it breaks the build
}
bootstrap_libs_post() {
- case "$i" in
+ case "$1" in
ldns) (cd $BASEDIR/libs/ldns && mv install-sh~ install-sh) ;;
esac
}
continue
;;
esac
- bootstrap_libs_pre
+ bootstrap_libs_pre ${i}
if ! ${BGJOB}; then
- libbootstrap ${i}
+ libbootstrap ${i} ; bootstrap_libs_post ${i}
else
- libbootstrap ${i} &
+ ((libbootstrap ${i} ; bootstrap_libs_post ${i}) &)
fi
- bootstrap_libs_post
done
}