This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via 036f1d33b5d186a68748a5465713370b1c602545 (commit) from 91f92891554b9c335e9f51f8ef574b74a37a11fb (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 036f1d33b5d186a68748a5465713370b1c602545 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Fri May 12 03:00:05 2017 +0300
configure.ac: fix mcx16 vs clang check
Currently configure script outputs the following error on my sistem, because the syntax is far from being standard. Use standard case/esac instead.
./configure: line 23507: x86_64-pc-linux-gnu: command not found
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/configure.ac b/configure.ac index d364b8dd..7569ebe0 100644 --- a/configure.ac +++ b/configure.ac @@ -306,7 +306,8 @@ ODP_CFLAGS="$ODP_CFLAGS $ODP_CFLAGS_EXTRA" ########################################################################## # Check if compiler supports cmpxchng16 on x86-based architectures ########################################################################## -if "${host}" == i?86* -o "${host}" == x86*; then +case "${host}" in + i?86? | x86*) if test "${CC}" != "gcc" -o ${CC_VERSION_MAJOR} -ge 5; then my_save_cflags="$CFLAGS"
@@ -319,7 +320,8 @@ if "${host}" == i?86* -o "${host}" == x86*; then ) CFLAGS="$my_save_cflags" fi -fi + ;; +esac
########################################################################## # Default include setup
-----------------------------------------------------------------------
Summary of changes: configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive