From d28d7b18145be6942adcc668c229f13f7b86202a Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 27 Jan 2003 13:40:43 +0000 Subject: (check-misc): Check for st_blocks, too. --- src/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index 5cce284f2..d804e4133 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -205,9 +205,14 @@ check-README: # Make sure we don't define any S_IS* macros in src/*.c files. # Not a big deal, but they're already defined via system.h. +# +# Also make sure we don't use st_blocks. Use ST_NBLOCKS instead. +# This is a bit of a kludge, since it prevents use of the string +# even in comments, but for now it does the job with no false positives. .PHONY: check-misc check-misc: grep '^# *define *S_IS' $(SOURCES) && exit 1 || : + grep st_blocks $(SOURCES) && exit 1 || : # Extract the list of authors from each file. sed_filter = s/^ *//;s/N_ (//;s/^"//;s/")*$$// -- cgit v1.2.3-70-g09d2