install openmc on macbook with mavericks

i have this error when i run the command sudo make install

make: *** [install] Error 64

Can you provide more information and output? That error alone is not enough to figure out what’s going on.

Paul

Hello,
you need just to remove the “-D” in the makefile in lines 249 till 254.they are now:

@install -D (program) (DESTDIR)(prefix)/bin/(program)
@install -D utils/statepoint_cmp.py (DESTDIR)(prefix)/bin/statepoint_cmp
@install -D utils/statepoint_histogram.py (DESTDIR)(prefix)/bin/statepoint_histogram
@install -D utils/statepoint_meshplot.py (DESTDIR)(prefix)/bin/statepoint_meshplot
@install -D …/man/man1/openmc.1 (DESTDIR)(prefix)/share/man/man1/openmc.1
@install -D …/LICENSE (DESTDIR)(prefix)/share/doc/$(program)/copyright

they must become like this:

@install (program) (DESTDIR)(prefix)/bin/(program)
@install utils/statepoint_cmp.py (DESTDIR)(prefix)/bin/statepoint_cmp
@install utils/statepoint_histogram.py (DESTDIR)(prefix)/bin/statepoint_histogram
@install utils/statepoint_meshplot.py (DESTDIR)(prefix)/bin/statepoint_meshplot
@install …/man/man1/openmc.1 (DESTDIR)(prefix)/share/man/man1/openmc.1
@install …/LICENSE (DESTDIR)(prefix)/share/doc/$(program)/copyright

good luck.