blob: cedc19b7881521d37e9ed8255653cfce3b35b5b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Read booleans.conf and output M4 directives to
# override default settings in global_booleans
BEGIN {
FS="="
}
/^[[:blank:]]*[[:alpha:]]+/{
gsub(/[[:blank:]]*/,"")
print "define(`"$1"_conf',`"$2"')"
}
|