makeLINT.send has been moved to sys/conf so we can build LINT on other

architectures besides i386.
This commit is contained in:
John Baldwin 2002-07-15 17:48:47 +00:00
parent 19d02d39c9
commit 557c19bff3
3 changed files with 4 additions and 11 deletions

View File

@ -6,5 +6,5 @@ all:
clean: clean:
rm -f LINT rm -f LINT
LINT: ../../conf/NOTES NOTES makeLINT.sed LINT: ../../conf/NOTES NOTES ../../conf/makeLINT.sed
cat ../../conf/NOTES NOTES | sed -E -n -f makeLINT.sed > LINT cat ../../conf/NOTES NOTES | sed -E -n -f ../../conf/makeLINT.sed > LINT

View File

@ -6,5 +6,5 @@ all:
clean: clean:
rm -f LINT rm -f LINT
LINT: ../../conf/NOTES NOTES makeLINT.sed LINT: ../../conf/NOTES NOTES ../../conf/makeLINT.sed
cat ../../conf/NOTES NOTES | sed -E -n -f makeLINT.sed > LINT cat ../../conf/NOTES NOTES | sed -E -n -f ../../conf/makeLINT.sed > LINT

View File

@ -1,7 +0,0 @@
#!/usr/bin/sed -E -n -f
# $FreeBSD$
/^(machine|ident|device|makeoptions|options|profile|cpu|option|maxusers)[[:space:]]/ {
s/[[:space:]]*#.*$//
p
}