From 12857d9cf93f8599e25ad75ef805b597c2c0134e Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Tue, 23 Oct 2012 10:21:52 +0200 Subject: [PATCH] configure: fix os type configure option for android --- configure.ac | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3725597..1166b9c 100644 --- a/configure.ac +++ b/configure.ac @@ -306,7 +306,15 @@ else fi # if we are cross-compiling, tell libav so - target_os=`echo $host_os | sed 's/-gnu//'` + case $host in + *android*) + target_os=linux + ;; + *) + target_os=`echo $host_os | sed 's/-gnu//'` + ;; + esac + if test "x$cross_compiling" = xyes; then emblibav_configure_args="$emblibav_configure_args --enable-cross-compile \ --target-os=$target_os --arch=$host_cpu --cross-prefix=$host_alias-" -- 2.7.4