diff options
author | Ian Lynagh <igloo@earth.li> | 2010-12-16 20:11:21 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-12-16 20:11:21 +0000 |
commit | 21551fcf98da2c80972df829428ae80209d87cb8 (patch) | |
tree | 3fa4cf396585bba93ebd0426767d3a5a6d1caecb /bindisttest | |
parent | 8f8b434cfe55d949b54ad97eac5231198fa8df7a (diff) | |
download | haskell-21551fcf98da2c80972df829428ae80209d87cb8.tar.gz |
Fix checkBinaries on OS X
Diffstat (limited to 'bindisttest')
-rw-r--r-- | bindisttest/checkBinaries.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindisttest/checkBinaries.sh b/bindisttest/checkBinaries.sh index 9637e68e9e..cf8b09bde9 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 -perm -u+x ! -name '*.so' ! -name '*.dynlib' ! -name '*.dll'` +for f in `find bindisttest/a/b/c -type f -perm -u+x ! -name '*.so' ! -name '*.dylib' ! -name '*.dll'` do if grep -q '("GHC RTS", "YES")' "$f" then |