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

A simple 'sleep' is more reliable.
This commit is contained in:
Henry Weller 2016-07-08 16:35:40 +01:00
parent 23ea3b364e
commit 02e14ffd4b

View File

@ -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