diff options
author | Bill Nottingham <notting@redhat.com> | 2008-09-30 14:51:23 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2008-09-30 14:51:23 -0400 |
commit | 97f485a093737052cf82ad0440be9a3498bff742 (patch) | |
tree | 286c74dac19d0880fd9419bae66d28343d17b7fc | |
parent | a71435759179148ff8db333094e828278c161507 (diff) | |
download | initscripts-97f485a093737052cf82ad0440be9a3498bff742.tar initscripts-97f485a093737052cf82ad0440be9a3498bff742.tar.gz initscripts-97f485a093737052cf82ad0440be9a3498bff742.tar.bz2 initscripts-97f485a093737052cf82ad0440be9a3498bff742.tar.xz initscripts-97f485a093737052cf82ad0440be9a3498bff742.zip |
Ignore stuff in .git for 'make check'
Not just because it's not what we're checking, but also because it fails the check.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -122,7 +122,7 @@ install: check: - for afile in `find . -type f -perm +111|grep -v \.csh | grep -v po/ ` ; do \ + for afile in `find . -type f -perm +111|grep -v \.csh | grep -v .git | grep -v po/ ` ; do \ if ! file $$afile | grep -s ELF >/dev/null; then \ bash -n $$afile || { echo $$afile ; exit 1 ; } ; \ fi ;\ |