academic/OpenFOAM: Fix build.

Thanks to Lorenzo Trevisan :)

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
David Spencer 2017-09-30 00:03:01 +01:00
parent fda1946e2d
commit ceb24dc9b7

View file

@ -64,17 +64,18 @@ cd $PRGNAM-$VERSION
sed -i -e '16s=-lreadline=-lreadline -lncurses=' ./applications/utilities/mesh/manipulation/setSet/Allwmake
sed -i -e '47s=$HOME=/opt=' ./etc/bashrc
# Fix bash_completion for posixly-incorrect identifier
sed -i -e 's/rm~all/rmAll/g' etc/config.sh/bash_completion
# "Allwmake" below doesn't accept MAKEFLAGS. If MAKEFLAGS contains a -j option,
# extract it and pass it to "Allwmake". (Thanks to Chris Willing)
# extract the number of jobs and export it for "Allwmake". (Thanks to Chris Willing)
jval="$(echo $MAKEFLAGS |grep -o "\-j *[0-9]*" | grep -o "[0-9]*")" || true
jobs=''
[ -n "$jval" ] && jobs="-j${jval}"
[ -n "$jval" ] && export WM_NCOMPPROCS="$jval"
(
. ./etc/bashrc || true
cd $WM_PROJECT_DIR
./Allwmake $jobs
./Allwmake
# check for graphviz
if [ -x /usr/bin/dot ]; then
wmake all doc