mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
wmakeLnIncludeAll: 'sync' does not guarantee synchronization of the links
A simple 'sleep' is more reliable.
This commit is contained in:
@ -98,7 +98,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Default to searching from CWD
|
# Defaults to searching from CWD
|
||||||
[ "$#" -gt 0 ] || set -- .
|
[ "$#" -gt 0 ] || set -- .
|
||||||
|
|
||||||
for checkDir
|
for checkDir
|
||||||
@ -149,7 +149,8 @@ then
|
|||||||
|
|
||||||
# Synchronize the file system to ensure that all of the links exist
|
# Synchronize the file system to ensure that all of the links exist
|
||||||
# before compilation
|
# before compilation
|
||||||
sync
|
# sync
|
||||||
|
sleep 2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user