diff options
author | ru <ru@FreeBSD.org> | 2005-11-28 11:03:59 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-11-28 11:03:59 +0000 |
commit | f97bcd3b193af4c29f6ae9a53301aa6a9a19400b (patch) | |
tree | 6503d8f17cf97dfd6f86f81da691725048c08be2 | |
parent | 93dbe6d06f65080d8590b4ee0e4858f562b570fc (diff) | |
download | FreeBSD-src-f97bcd3b193af4c29f6ae9a53301aa6a9a19400b.zip FreeBSD-src-f97bcd3b193af4c29f6ae9a53301aa6a9a19400b.tar.gz |
universe: don't attempt to compile DEFAULTS and don't compile LINT twice.
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -269,7 +269,8 @@ universe_prologue: .for arch in ${target:C/:.*$//} .for mach in ${target:C/^.*://} KERNCONFS!= cd ${.CURDIR}/sys/${mach}/conf && \ - find [A-Z]*[A-Z] -type f -maxdepth 0 + find [A-Z]*[A-Z] -type f -maxdepth 0 \ + ! -name DEFAULTS ! -name NOTES KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/} universe: universe_${mach} .ORDER: universe_prologue universe_${mach} universe_epilogue |