aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristos Margiolis <christos@FreeBSD.org>2026-03-24 10:32:26 +0000
committerChristos Margiolis <christos@FreeBSD.org>2026-03-24 10:38:41 +0000
commit71c46c8c901be2a6e0708c912f0d766d49e5b335 (patch)
treee37449e49f12493c2bcde311ebcfd985295fc266
parent6b91c8d5d2c35c4c6231eb172b514f95ce6e10d7 (diff)
-rw-r--r--sys/tools/sound/emu10k1-mkalsa.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/sys/tools/sound/emu10k1-mkalsa.sh b/sys/tools/sound/emu10k1-mkalsa.sh
deleted file mode 100644
index c6a2ba462560..000000000000
--- a/sys/tools/sound/emu10k1-mkalsa.sh
+++ /dev/null
@@ -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