[vlc-commits] configure: Treat host_cpu = armv* as plain arm

Martin Storsjö git at videolan.org
Wed Feb 21 21:14:12 CET 2018


vlc | branch: master | Martin Storsjö <martin at martin.st> | Wed Feb  7 11:25:13 2018 +0200| [4214cf058cfaef45fe6c568868b284447dced37b] | committer: Martin Storsjö

configure: Treat host_cpu = armv* as plain arm

This matches a change in contrib in 99acb87cc9.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4214cf058cfaef45fe6c568868b284447dced37b
---

 configure.ac | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/configure.ac b/configure.ac
index 08f0b612e7..4e7f8db990 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1169,6 +1169,10 @@ case "${host_cpu}" in
   "")
     ARCH=unknown
     ;;
+  armv*)
+    ARCH="arm"
+    host_cpu="arm"
+    ;;
   *)
     ARCH="${host_cpu}"
     ;;



More information about the vlc-commits mailing list