diff options
author | Jim Meyering <jim@meyering.net> | 2003-03-12 23:14:15 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-03-12 23:14:15 +0000 |
commit | 250680570265227c79761c5f30659238d69b576c (patch) | |
tree | e0394c599a1b5f6da36dc15b86a81af54b465ffa /src | |
parent | 0baa107ac9c95e02d801a1b71323d943d360e667 (diff) | |
download | coreutils-250680570265227c79761c5f30659238d69b576c.tar.xz |
.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index dfdd46b09..7885a2c44 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1547,8 +1547,9 @@ check-README: # 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 || : + cd $(srcdir); grep '^# *define *S_IS' $(SOURCES) && exit 1 || : + cd $(srcdir); grep st_blocks $(SOURCES) && exit 1 || : + cd $(srcdir); grep '^# *define .*defined' $(SOURCES) && exit 1 || : # FIXME: handle *.sh; and use $(all_programs), not $(SOURCES) ../AUTHORS: $(SOURCES) rm -f $@-t |