diff options
author | Jörg Krause <jkrause@posteo.de> | 2014-09-11 13:55:48 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-09-17 22:53:26 +0300 |
commit | 3f2c70355ab722bc9f741bd3ed8224c7cfb62379 (patch) | |
tree | 8f88d04f4cf083d6054a0bd997a2482a01b2cec4 | |
parent | c5560e72d0bb69f8a1ac9536570398f84388f396 (diff) | |
download | ffmpeg-3f2c70355ab722bc9f741bd3ed8224c7cfb62379.tar.gz |
configure: Use the right variables in check_host_cpp
HOSTCPPFLAGS and HOSTCFLAGS are only set in config.mak.
Signed-off-by: Martin Storsjö <martin@martin.st>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1067,7 +1067,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(){ |