Commit b764162526854686e579a48b6ac5981f4eb886a3

Landon Fuller 2010-09-19T09:04:34

Fix the script name (build-iphone.sh -> build-ios.sh)

diff --git a/build-ios.sh b/build-ios.sh
new file mode 100755
index 0000000..d9010af
--- /dev/null
+++ b/build-ios.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+PLATFORM_IOS=/Developer/Platforms/iPhoneOS.platform/
+PLATFORM_IOS_SIM=/Developer/Platforms/iPhoneSimulator.platform/
+SDK_IOS_VERSION="4.1"
+
+mkdir -p "build-ios"
+pushd "build-ios"
+export CC="${PLATFORM_IOS}"/Developer/usr/bin/gcc-4.2
+export CFLAGS="-arch armv6 -isysroot ${PLATFORM_IOS}/Developer/SDKs/iPhoneOS${SDK_IOS_VERSION}.sdk/"
+../configure --host=arm-apple-darwin10 && make
+popd
diff --git a/build-iphone.sh b/build-iphone.sh
deleted file mode 100755
index d9010af..0000000
--- a/build-iphone.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-PLATFORM_IOS=/Developer/Platforms/iPhoneOS.platform/
-PLATFORM_IOS_SIM=/Developer/Platforms/iPhoneSimulator.platform/
-SDK_IOS_VERSION="4.1"
-
-mkdir -p "build-ios"
-pushd "build-ios"
-export CC="${PLATFORM_IOS}"/Developer/usr/bin/gcc-4.2
-export CFLAGS="-arch armv6 -isysroot ${PLATFORM_IOS}/Developer/SDKs/iPhoneOS${SDK_IOS_VERSION}.sdk/"
-../configure --host=arm-apple-darwin10 && make
-popd