Index: head/sys/amd64/conf/Makefile =================================================================== --- head/sys/amd64/conf/Makefile (revision 95939) +++ head/sys/amd64/conf/Makefile (revision 95940) @@ -1,10 +1,10 @@ # $FreeBSD$ all: @echo "make LINT only" clean: rm LINT -LINT: ../../conf/NOTES NOTES makeLINT.sh - cat ../../conf/NOTES NOTES | sh makeLINT.sh > LINT +LINT: ../../conf/NOTES NOTES makeLINT.sed + cat ../../conf/NOTES NOTES | sed -E -n -f makeLINT.sed > LINT Index: head/sys/conf/makeLINT.sed =================================================================== --- head/sys/conf/makeLINT.sed (nonexistent) +++ head/sys/conf/makeLINT.sed (revision 95940) @@ -0,0 +1,7 @@ +#!/usr/bin/sed -E -n -f +# $FreeBSD$ + +/^(machine|ident|device|makeoptions|options|profile|cpu|option|maxusers)[[:space:]]/ { + s/[[:space:]]*#.*$// + p +} Property changes on: head/sys/conf/makeLINT.sed ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/sys/i386/conf/Makefile =================================================================== --- head/sys/i386/conf/Makefile (revision 95939) +++ head/sys/i386/conf/Makefile (revision 95940) @@ -1,10 +1,10 @@ # $FreeBSD$ all: @echo "make LINT only" clean: rm LINT -LINT: ../../conf/NOTES NOTES makeLINT.sh - cat ../../conf/NOTES NOTES | sh makeLINT.sh > LINT +LINT: ../../conf/NOTES NOTES makeLINT.sed + cat ../../conf/NOTES NOTES | sed -E -n -f makeLINT.sed > LINT Index: head/sys/i386/conf/makeLINT.sed =================================================================== --- head/sys/i386/conf/makeLINT.sed (nonexistent) +++ head/sys/i386/conf/makeLINT.sed (revision 95940) @@ -0,0 +1,7 @@ +#!/usr/bin/sed -E -n -f +# $FreeBSD$ + +/^(machine|ident|device|makeoptions|options|profile|cpu|option|maxusers)[[:space:]]/ { + s/[[:space:]]*#.*$// + p +} Property changes on: head/sys/i386/conf/makeLINT.sed ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property