mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-29 06:35:39 -04:00
HvD: The script looks for a file called nwchem* that should
be executable. However, different implementations of find use a different syntax to specify the permissions to look for. This change is needed for the script to work with the BSD find.
This commit is contained in:
parent
cf30f42807
commit
faf09adadb
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@
|
|||
export NWCHEM_TOP=`pwd`/..
|
||||
export NWCHEM_TARGET=LINUX64
|
||||
export NWCHEM_TEST=${NWCHEM_TOP}/QA/tests
|
||||
export NWCHEM_EXECUTABLE=`find "${NWCHEM_TOP}/bin" -perm /u+x -name "nwchem*"`
|
||||
export NWCHEM_EXECUTABLE=`find "${NWCHEM_TOP}/bin" -perm -u-x -name "nwchem*"`
|
||||
nproc=4
|
||||
if [ "$1" != "" ] ; then
|
||||
nproc=$1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue