From 453944cc77b9ea27c74011eb7c0e20c887b321cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Krause?= Date: Thu, 11 Sep 2014 13:55:48 +0200 Subject: [PATCH] configure: fix check_cmd in check_host_cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use correct cpp and c flags variables for the host libc. Signed-off-by: Jörg Krause Reviewed-by: Benoit Fouet Signed-off-by: Michael Niedermayer --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index e66519db35..7a711a2af7 100755 --- a/configure +++ b/configure @@ -1244,7 +1244,7 @@ check_host_cpp(){ log check_host_cpp "$@" cat > $TMPC log_file $TMPC - check_cmd $host_cc $HOSTCPPFLAGS $HOSTCFLAGS "$@" $(hostcc_e $TMPO) $TMPC + check_cmd $host_cc $host_cppflags $host_cflags "$@" $(hostcc_e $TMPO) $TMPC } check_host_cppflags(){