sound: Retire unused emu10k1-mkalsa.sh
It is a legacy script which is no longer used. Its utility is also unknown. Sponsored by: The FreeBSD Foundation MFC after: 1 week Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D56043
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
|
||||
GREP=${GREP:-grep}
|
||||
CC=${CC:-cc}
|
||||
AWK=${AWK:-awk}
|
||||
MV=${MV:=mv}
|
||||
RM=${RM:=rm}
|
||||
IN=$1
|
||||
OUT=$2
|
||||
|
||||
trap "${RM} -f $OUT.tmp" EXIT
|
||||
|
||||
$GREP -v '#include' $IN | \
|
||||
$CC -E -D__KERNEL__ -dM - | \
|
||||
$AWK -F"[ (]" '
|
||||
/define/ {
|
||||
print "#ifndef " $2;
|
||||
print;
|
||||
print "#endif";
|
||||
}' > $OUT.tmp
|
||||
${MV} -f $OUT.tmp $OUT
|
||||
Reference in New Issue
Block a user