diff options
author | ru <ru@FreeBSD.org> | 2005-11-28 11:14:36 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-11-28 11:14:36 +0000 |
commit | 208069ffa89bb623bf655604c2b85ec2685abeab (patch) | |
tree | a8e0b1bb60e834ecc4e8b8744b009ab309e3cca9 /Makefile | |
parent | f97bcd3b193af4c29f6ae9a53301aa6a9a19400b (diff) | |
download | FreeBSD-src-208069ffa89bb623bf655604c2b85ec2685abeab.zip FreeBSD-src-208069ffa89bb623bf655604c2b85ec2685abeab.tar.gz |
Fix a bug in previous revision: skip LINT if it exists, not NOTES
(the source for LINT), as I initially intended.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -270,7 +270,7 @@ universe_prologue: .for mach in ${target:C/^.*://} KERNCONFS!= cd ${.CURDIR}/sys/${mach}/conf && \ find [A-Z]*[A-Z] -type f -maxdepth 0 \ - ! -name DEFAULTS ! -name NOTES + ! -name DEFAULTS ! -name LINT KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/} universe: universe_${mach} .ORDER: universe_prologue universe_${mach} universe_epilogue |