aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>1999-08-02 15:05:30 +0000
committerBill Nottingham <notting@redhat.com>1999-08-02 15:05:30 +0000
commit628324e5efebdbb645c3cb6bba2043fa60460a80 (patch)
tree40c215e9ca17d9cf16db67e4d5e83ff8540af5b6
parent713d8e3f14a9d729815014b6e3ab4cbca3fd2b73 (diff)
downloadinitscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.tar
initscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.tar.gz
initscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.tar.bz2
initscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.tar.xz
initscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.zip
*** empty log message ***
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e2f242d0..c8d1fc78 100644
--- a/Makefile
+++ b/Makefile
@@ -31,8 +31,8 @@ install:
chmod og=rwx,o=rx /var/run/netreport
check:
- for afile in `find . -type f ` ; do \
- grep -q "^#\!/bin/sh" $$afile && { bash -n $$afile || exit 1 } ; \
+ for afile in `find . -type f -perm +111 ` ; do \
+ bash -n $$afile || { echo $$afile ; exit 1 } ; \
done
changelog:
@@ -60,4 +60,4 @@ create-archive: tag-archive
@echo " "
@echo "The final archive is ./initscripts-$(VERSION).tar.gz."
-archive: check tag-archive create-archive
+archive: clean check tag-archive create-archive