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:
Christos Margiolis
2026-03-24 11:32:26 +01:00
parent 6b91c8d5d2
commit 71c46c8c90
-20
View File
@@ -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