diff options
author | Arun Raghavan <arun@centricular.com> | 2015-02-22 21:24:39 +0530 |
---|---|---|
committer | Arun Raghavan <git@arunraghavan.net> | 2015-02-22 21:24:39 +0530 |
commit | b43b4d942ee3fad6f721c673d8f287685882e839 (patch) | |
tree | 301691e22ca3e598817f2b8ecc4e1ddf8ac576ea /recipes/libvpx | |
parent | cb1cb7579c3f85b7c4b835aecd71aeb1fa983a25 (diff) |
libvpx: Fix up pre-armv7 Android build
Diffstat (limited to 'recipes/libvpx')
-rw-r--r-- | recipes/libvpx/0003-configure-Add-back-the-armv5te-android-gcc-target.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/libvpx/0003-configure-Add-back-the-armv5te-android-gcc-target.patch b/recipes/libvpx/0003-configure-Add-back-the-armv5te-android-gcc-target.patch new file mode 100644 index 00000000..292f5a36 --- /dev/null +++ b/recipes/libvpx/0003-configure-Add-back-the-armv5te-android-gcc-target.patch @@ -0,0 +1,25 @@ +From 2046dd7d8d1abd5d71f419f06969e7e809e9800f Mon Sep 17 00:00:00 2001 +From: Arun Raghavan <arun@centricular.com> +Date: Sun, 22 Feb 2015 21:20:50 +0530 +Subject: [PATCH] configure: Add back the armv5te-android-gcc target + +We need this to be able to build for pre-armv7 Android devices. +--- + configure | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/configure b/configure +index 4509697..9b5a969 100755 +--- a/configure ++++ b/configure +@@ -97,6 +97,7 @@ EOF + + # all_platforms is a list of all supported target platforms. Maintain + # alphabetically by architecture, generic-gnu last. ++all_platforms="${all_platforms} armv5te-android-gcc" + all_platforms="${all_platforms} armv6-darwin-gcc" + all_platforms="${all_platforms} armv6-linux-rvct" + all_platforms="${all_platforms} armv6-linux-gcc" +-- +2.1.0 + |