diff options
author | obrien <obrien@FreeBSD.org> | 2003-02-25 20:59:23 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-02-25 20:59:23 +0000 |
commit | d42e7b5cee60cd61ff6ba42e8cd7b333814283cd (patch) | |
tree | c0f38d0eca522579e246a7343a25800d4d61da28 /sys/i386/conf/Makefile | |
parent | f1c8252d4ae1f5b3c53300c142edaba3c8f40f93 (diff) | |
download | FreeBSD-src-d42e7b5cee60cd61ff6ba42e8cd7b333814283cd.zip FreeBSD-src-d42e7b5cee60cd61ff6ba42e8cd7b333814283cd.tar.gz |
Move most everything back to a MI NOTES, and use "nodevice" in MD NOTES
Where needed. Use 'sed' for now in place of "nooptions". Add a sparc64
MD NOTES.
Reviewed by: arch@
Diffstat (limited to 'sys/i386/conf/Makefile')
-rw-r--r-- | sys/i386/conf/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/i386/conf/Makefile b/sys/i386/conf/Makefile index 72308f9..674f686 100644 --- a/sys/i386/conf/Makefile +++ b/sys/i386/conf/Makefile @@ -6,5 +6,6 @@ all: clean: rm -f LINT -LINT: ../../conf/NOTES NOTES ../../conf/makeLINT.sed - cat ../../conf/NOTES NOTES | sed -E -n -f ../../conf/makeLINT.sed > LINT +NOTES= ../../conf/NOTES NOTES +LINT: ../../conf/makeLINT.sed + cat ${NOTES} | sed -E -n -f ../../conf/makeLINT.sed > ${.TARGET} |