aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Hoyer <harald@redhat.com>2009-05-04 16:08:11 +0200
committerHarald Hoyer <harald@redhat.com>2009-05-04 16:08:11 +0200
commitac34bb846b983eee9f59408ef635366ad618f2e7 (patch)
treea0cb2bdbad85f3b5479b071265f3de23c251e43f
parenteed90b57d56c987e1b5a9135f6a43741c2a596bf (diff)
downloadinitscripts-ac34bb846b983eee9f59408ef635366ad618f2e7.tar
initscripts-ac34bb846b983eee9f59408ef635366ad618f2e7.tar.gz
initscripts-ac34bb846b983eee9f59408ef635366ad618f2e7.tar.bz2
initscripts-ac34bb846b983eee9f59408ef635366ad618f2e7.tar.xz
initscripts-ac34bb846b983eee9f59408ef635366ad618f2e7.zip
ignore .git bash files for check target
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3a3eba33..d8f1c3c9 100644
--- a/Makefile
+++ b/Makefile
@@ -109,7 +109,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 po/ |grep -v .git/` ; do \
if ! file $$afile | grep -s ELF >/dev/null; then \
bash -n $$afile || { echo $$afile ; exit 1 ; } ; \
fi ;\