Skip to content
Snippets Groups Projects
Commit 16531b33 authored by RIETTE Sébastien's avatar RIETTE Sébastien
Browse files

Bugfix for non-existent mesonh/ext directory

parent 6b5354a3
No related branches found
No related tags found
No related merge requests found
...@@ -181,8 +181,10 @@ if [ $compilation -eq 1 ]; then ...@@ -181,8 +181,10 @@ if [ $compilation -eq 1 ]; then
find PHYEX -type f -exec touch {} \; #to be sure a recompilation occurs find PHYEX -type f -exec touch {} \; #to be sure a recompilation occurs
# Move manually ext/ files in src/MNH # Move manually ext/ files in src/MNH
mv -f PHYEX/ext/* MNH/ if [ -d PHYEX/ext ]; then
rmdir PHYEX/ext mv -f PHYEX/ext/* MNH/
rmdir PHYEX/ext
]
cd $MNHPACK/$name/src/PHYEX/turb cd $MNHPACK/$name/src/PHYEX/turb
# Delete files of MNH-V5-5-0/src/MNH and MNH/src/LIB/SURCOUCHE/src with same name # Delete files of MNH-V5-5-0/src/MNH and MNH/src/LIB/SURCOUCHE/src with same name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment