From ceb24dc9b7e31b47a14a8d66d0f5f83a57dae614 Mon Sep 17 00:00:00 2001 From: David Spencer Date: Sat, 30 Sep 2017 00:03:01 +0100 Subject: academic/OpenFOAM: Fix build. Thanks to Lorenzo Trevisan :) Signed-off-by: David Spencer --- academic/OpenFOAM/OpenFOAM.SlackBuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'academic') diff --git a/academic/OpenFOAM/OpenFOAM.SlackBuild b/academic/OpenFOAM/OpenFOAM.SlackBuild index 40f65f4173..d4b76a6237 100644 --- a/academic/OpenFOAM/OpenFOAM.SlackBuild +++ b/academic/OpenFOAM/OpenFOAM.SlackBuild @@ -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 -- cgit v1.2.3