Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Mar 2026 10:39:10 +0000
From:      Christos Margiolis <christos@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 71c46c8c901b - main - sound: Retire unused emu10k1-mkalsa.sh
Message-ID:  <69c269ce.34600.5c4ab656@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by christos:

URL: https://cgit.FreeBSD.org/src/commit/?id=71c46c8c901be2a6e0708c912f0d766d49e5b335

commit 71c46c8c901be2a6e0708c912f0d766d49e5b335
Author:     Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2026-03-24 10:32:26 +0000
Commit:     Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2026-03-24 10:38:41 +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
---
 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 $OUT


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69c269ce.34600.5c4ab656>