Date: Tue, 31 Mar 2026 09:55:16 +0000 From: Christos Margiolis <christos@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: dfcbb9c9da8a - stable/15 - sound: Retire unused emu10k1-mkalsa.sh Message-ID: <69cb9a04.3a1c3.595f3516@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/15 has been updated by christos: URL: https://cgit.FreeBSD.org/src/commit/?id=dfcbb9c9da8a209ce581a24930f0d22b69ef531b commit dfcbb9c9da8a209ce581a24930f0d22b69ef531b Author: Christos Margiolis <christos@FreeBSD.org> AuthorDate: 2026-03-24 10:32:26 +0000 Commit: Christos Margiolis <christos@FreeBSD.org> CommitDate: 2026-03-31 09:54:44 +0000 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 (cherry picked from commit 71c46c8c901be2a6e0708c912f0d766d49e5b335) --- sys/tools/sound/emu10k1-mkalsa.sh | 20 -------------------- 1 file changed, 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 $OUThome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69cb9a04.3a1c3.595f3516>
