mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 04:03:03 +01:00
Upgrade alsa-tools from verion 1.0.28 to 1.0.29. * update autotools.patch * add file gitcompile which exists in git repo but missing in release tar ball for sub-directory hdajacksensetest (From OE-Core rev: 9174c8bfe1aba1b32417d52d923fe5fff996814e) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
283 B
Bash
Executable File
14 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
|
|
aclocal $ACLOCAL_FLAGS || exit 1
|
|
automake --foreign --add-missing || exit 1
|
|
autoconf || exit 1
|
|
export CFLAGS='-O2 -Wall -pipe -g'
|
|
echo "CFLAGS=$CFLAGS"
|
|
echo "./configure $@"
|
|
./configure $@ || exit 1
|
|
unset CFLAGS
|
|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
|
make || exit 1
|
|
fi
|