Skip to content

Commit

Permalink
use HOME as default build location
Browse files Browse the repository at this point in the history
  • Loading branch information
ebknudsen committed Sep 9, 2024
1 parent c2262e1 commit 0782cd6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
3 changes: 1 addition & 2 deletions Arch/dagmc-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ install_prefix="/usr/local/lib"
if [ "x" != "x$LOCAL_INSTALL_PREFIX" ]; then
install_prefix=$LOCAL_INSTALL_PREFIX
fi

build_prefix="/dev/null/openmc" #this will never exist - and so use the default later.
build_prefix="$HOME"
if [ "x" != "x$OPENMC_BUILD_PREFIX" ]; then
build_prefix=$OPENMC_BUILD_PREFIX
fi
Expand Down
6 changes: 2 additions & 4 deletions Arch/double_down-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ WD=`pwd`
name=`basename $0`
package_name='double_down'

install_prefix="/opt"
install_prefix="/usr/local/lib"
if [ "x" != "x$LOCAL_INSTALL_PREFIX" ]; then
install_prefix=$LOCAL_INSTALL_PREFIX
fi
build_prefix="$HOME/openmc"

build_prefix="/dev/null/openmc" #this will never exist - and so use the default later.
build_prefix="$HOME"
if [ "x" != "x$OPENMC_BUILD_PREFIX" ]; then
build_prefix=$OPENMC_BUILD_PREFIX
fi
Expand Down
4 changes: 2 additions & 2 deletions Arch/moab-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ WD=`pwd`
name=`basename $0`
package_name='MOAB'

install_prefix="/opt"
install_prefix="/usr/local/lib"
if [ "x" != "x$LOCAL_INSTALL_PREFIX" ]; then
install_prefix=$LOCAL_INSTALL_PREFIX
fi

build_prefix="/dev/null/openmc" #this will never exist - and so use the default later.
build_prefix="$HOME"
if [ "x" != "x$OPENMC_BUILD_PREFIX" ]; then
build_prefix=$OPENMC_BUILD_PREFIX
fi
Expand Down
4 changes: 2 additions & 2 deletions Arch/openmc-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -ex
#./nuclear_data-install.sh
#echo "Downloaded & extracted nuclear data, proceeding..."

openmc_version="v0.14.0"
openmc_version="v0.15.0"
if [ "x" != "x$OPENMC_VERSION" ]; then
openmc_version=$OPENMC_VERSION
fi
Expand All @@ -26,7 +26,7 @@ if [ "x" != "x$LOCAL_INSTALL_PREFIX" ]; then
install_prefix=$LOCAL_INSTALL_PREFIX
fi

build_prefix="/dev/null/openmc" #this will never exist - and so use the default later.
build_prefix="$HOME"
if [ "x" != "x$OPENMC_BUILD_PREFIX" ]; then
build_prefix=$OPENMC_BUILD_PREFIX
fi
Expand Down

0 comments on commit 0782cd6

Please sign in to comment.