[x264-devel] [PATCH 2/4] configure: replace usage of [[ with POSIX-compatible [

Diego Biurrun diego at biurrun.de
Thu Jan 16 18:07:10 CET 2020


On 14/01/2020 18.18, Ethan Sommer wrote:
> --- a/configure
> +++ b/configure
> @@ -1020,7 +1017,7 @@ if [ $compiler = GNU ]; then
>           CPU_ENDIAN="big-endian"
> -    elif !(${cross_prefix}strings -a conftest.o | grep -q EGIB && ${cross_prefix}strings -a conftest.o | grep -q naidnePF) ; then
> +    elif ! (${cross_prefix}strings -a conftest.o | grep -q EGIB && ${cross_prefix}strings -a conftest.o | grep -q naidnePF) ; then
>           die "endian test failed"
> @@ -1611,7 +1608,8 @@ cat conftest.log >> config.log
>   [ "$SRCPATH" != "." ] && ln -sf ${SRCPATH}/Makefile ./Makefile
> -mkdir -p common/{aarch64,arm,mips,ppc,x86} encoder extras filters/video input output tools
> +mkdir -p common/aarch64 common/arm common/mips common/ppc common/x86 \
> +    encoder extras filters/video input output tools

(Random) unrelated changes, please leave these out.

Diego


More information about the x264-devel mailing list