annotate scripts/test-make.sh @ 211:4035c19073aa

etm_audio.c: fix off-by-one error in auw of FIR coefficients This fix was already made in FC Tourmaline a while back, but it is also the kind of bugfix that deserves to be backported to Magnetite and Selenite as well.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 31 Oct 2022 00:18:16 +0000
parents c8a4561ef581
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 #!/bin/sh
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 set -e
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 for i in *
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 do
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 echo $i
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 if [ $i != config ]
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 then
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 (cd $i; make)
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 fi
c8a4561ef581 scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 done