Fixed code signing release frameworks
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
diff --git a/Xcode/SDL/pkg-support/codesign-frameworks.sh b/Xcode/SDL/pkg-support/codesign-frameworks.sh
index 16dea25..e6965e5 100755
--- a/Xcode/SDL/pkg-support/codesign-frameworks.sh
+++ b/Xcode/SDL/pkg-support/codesign-frameworks.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# WARNING: You may have to run Clean in Xcode after changing CODE_SIGN_IDENTITY!
+# WARNING: You may have to run Clean in Xcode after changing CODE_SIGN_IDENTITY!
# Verify that $CODE_SIGN_IDENTITY is set
if [ -z "$CODE_SIGN_IDENTITY" ] ; then
@@ -14,20 +14,16 @@ if [ -z "$CODE_SIGN_IDENTITY" ] ; then
fi
fi
-SAVEIFS=$IFS
-IFS=$(echo -en "\n\b")
-
FRAMEWORK_DIR="${TARGET_BUILD_DIR}"
# Loop through all frameworks
-FRAMEWORKS=`find "${FRAMEWORK_DIR}" -type d -name "*.framework" | sed -e "s/\(.*\)/\1\/Versions\/A\//"`
+FRAMEWORKS=`find "${FRAMEWORK_DIR}" -type d -name "*.framework"`
RESULT=$?
if [[ $RESULT != 0 ]] ; then
exit 1
fi
-echo "Found:"
-echo "${FRAMEWORKS}"
+echo "Found: ${FRAMEWORKS}"
for FRAMEWORK in $FRAMEWORKS;
do
@@ -38,6 +34,3 @@ do
exit 1
fi
done
-
-# restore $IFS
-IFS=$SAVEIFS