diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -41,7 +41,9 @@ install: check: for afile in `find . -type f -perm +111|grep -v \.csh ` ; do \ - bash -n $$afile || { echo $$afile ; exit 1 } ; \ + if ! file $$afile | grep -s ELF >/dev/null; then \ + bash -n $$afile || { echo $$afile ; exit 1 } ; \ + fi ;\ done changelog: |