mirror of https://github.com/thesofproject/sof.git
scripts: Add #! headers to shell scripts
Use /bin/sh by default. The lists used in xtensa-build-all.sh are a bash feature, use bash for that script. Signed-off-by: Dylan Reid <dgreid@chromium.org>
This commit is contained in:
parent
3ad69eb715
commit
2470f8c0b3
|
@ -1,3 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
# fail on any errors
|
||||
set -e
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
./autogen.sh
|
||||
./configure --enable-rimage
|
||||
make
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
# fail on any errors
|
||||
set -e
|
||||
|
||||
|
|
Loading…
Reference in New Issue