diff options
author | Bill Nottingham <notting@redhat.com> | 1999-08-02 15:05:30 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-08-02 15:05:30 +0000 |
commit | 628324e5efebdbb645c3cb6bba2043fa60460a80 (patch) | |
tree | 40c215e9ca17d9cf16db67e4d5e83ff8540af5b6 /Makefile | |
parent | 713d8e3f14a9d729815014b6e3ab4cbca3fd2b73 (diff) | |
download | initscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.tar initscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.tar.gz initscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.tar.bz2 initscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.tar.xz initscripts-628324e5efebdbb645c3cb6bba2043fa60460a80.zip |
*** empty log message ***
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |