]> git.saurik.com Git - veency.git/commitdiff
Remove code I'm not using to lipo libvncserver.a.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 27 Jan 2014 01:26:14 +0000 (17:26 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 27 Jan 2014 01:26:14 +0000 (17:26 -0800)
libvncserver.sh

index 70fef63bfb0e381a6f0d9edc8f81aad43a0f43ec..79dd1f1f4da8cf749e3d85a9fc2e204168603a5f 100755 (executable)
@@ -21,7 +21,6 @@
 
 set -e
 
-archs=()
 function arch() {
     local arch=$1
     local host=$2
@@ -35,7 +34,6 @@ function arch() {
         return
     fi
 
-    archs+=("${arch}")
     mkdir "libvncserver.${arch}"
 
     flags=()
@@ -56,10 +54,3 @@ function arch() {
 
 arch armv6 arm-apple-darwin10 iphoneos iphoneos 2.0 -mllvm -arm-reserve-r9
 arch arm64 aarch64-apple-darwin11 iphoneos iphoneos 2.0
-
-libvncserver=()
-for arch in "${archs[@]}"; do
-    libvncserver+=(libvncserver."${arch}"/.libs/libvncserver.a)
-done
-
-lipo -create -output libvncserver.a "${libvncserver[@]}"