aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2008-09-30 14:51:23 -0400
committerBill Nottingham <notting@redhat.com>2008-09-30 14:51:23 -0400
commit97f485a093737052cf82ad0440be9a3498bff742 (patch)
tree286c74dac19d0880fd9419bae66d28343d17b7fc /Makefile
parenta71435759179148ff8db333094e828278c161507 (diff)
downloadinitscripts-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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4bec9ed3..2c1d4897 100644
--- a/Makefile
+++ b/Makefile
@@ -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 ;\