Skip to content
Snippets Groups Projects
Commit 02e14ffd authored by Henry Weller's avatar Henry Weller
Browse files

wmakeLnIncludeAll: 'sync' does not guarantee synchronization of the links

A simple 'sleep' is more reliable.
parent 23ea3b36
Branches
Tags
No related merge requests found
......@@ -98,7 +98,7 @@ else
fi
# Default to searching from CWD
# Defaults to searching from CWD
[ "$#" -gt 0 ] || set -- .
for checkDir
......@@ -149,7 +149,8 @@ then
# Synchronize the file system to ensure that all of the links exist
# before compilation
sync
# sync
sleep 2
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment