mac: Remove unsupported option to flock

flock is not native on mac os. There is a package that can be installed,
https://github.com/discoteq/flock, but it does not support the -x
option. See https://github.com/discoteq/flock/issues/9

By default, flock is exclusive so there's no need for the -x in the
first place

Tested:
Verified no error with flock when running script on mac os

Change-Id: Iab6bdb2a378cace290ad61569ae40c86baebc264
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
diff --git a/build-unit-test-docker.sh b/build-unit-test-docker.sh
index 43df2ea..fed3de2 100755
--- a/build-unit-test-docker.sh
+++ b/build-unit-test-docker.sh
@@ -78,7 +78,7 @@
 
   # Lock the file to avoid interlaced writes
   exec 3>> "$DEPCACHE_FILE"
-  flock -x 3
+  flock 3
   echo "$package:$tip" >&3
   exec 3>&-
 }