Skip to content

Commit 0ae68ff

Browse files
committed
Removed call to nproc in SConstruct as this causes a compilation error on OSx
1 parent f28b4d4 commit 0ae68ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ if env['build_trilinos']:
603603
print("Building (MPI) trilinos..............................")
604604
configure="sh nompi.sh " + env['prefix']
605605
res=os.system(configure)
606-
res=os.system('make -j`nproc --ignore=2` install')
606+
res=os.system('make -j4 install')
607607
env['trilinos_prefix']=env['prefix']
608608
os.chdir(startdir)
609609
env['trilinos_version']='13.0.0'

0 commit comments

Comments
 (0)