vlc | branch: master | Marvin Scholz <epira...@gmail.com> | Tue Dec 10 16:22:34 
2019 +0100| [274144fdddcfe80269632c0dfa779662abada39c] | committer: Marvin 
Scholz

apple/build: Fix incorrect assignment

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

 extras/package/apple/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extras/package/apple/build.sh b/extras/package/apple/build.sh
index 37345aa974..c6b81c37ba 100755
--- a/extras/package/apple/build.sh
+++ b/extras/package/apple/build.sh
@@ -205,7 +205,7 @@ validate_architecture()
 #   Architecture string
 set_host_triplet()
 {
-    local triplet_arch = $(${CC:-cc} -arch "$1" -dumpmachine | cut -d- -f 1)
+    local triplet_arch=$(${CC:-cc} -arch "$1" -dumpmachine | cut -d- -f 1)
     # We can not directly use the compiler value here as when building for
     # x86_64 iOS Simulator the triplet will match the build machine triplet
     # exactly, which will cause autoconf to assume we are not cross-compiling.

_______________________________________________
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to