From 4c415f933a099cc968d4928ddd646dabed83934e Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 16 Dec 2010 14:52:35 +0000 Subject: [PATCH] Use "-perm -u+x" rather than "-executable" to find executables On Windows, -executable is matching the html docs. --- bindisttest/checkBinaries.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindisttest/checkBinaries.sh b/bindisttest/checkBinaries.sh index 9093713..9637e68 100644 --- a/bindisttest/checkBinaries.sh +++ b/bindisttest/checkBinaries.sh @@ -4,7 +4,7 @@ EXPECTED_VERSION="$1" # Our shared libraries are currently executable (is that a bug?), so # we exclude anything that looks like a shared library -for f in `find bindisttest/a/b/c -type f -executable ! -name '*.so' ! -name '*.dynlib' ! -name '*.dll'` +for f in `find bindisttest/a/b/c -type f -perm -u+x ! -name '*.so' ! -name '*.dynlib' ! -name '*.dll'` do if grep -q '("GHC RTS", "YES")' "$f" then -- 1.7.10.4