summaryrefslogtreecommitdiff
path: root/MacOSX-Framework
diff options
context:
space:
mode:
authorDaniel Gustafsson <daniel@yesql.se>2022-04-21 09:28:52 +0200
committerDaniel Gustafsson <daniel@yesql.se>2022-04-21 09:28:52 +0200
commitabf079ab561185b79da580cb61429fbf32d9d919 (patch)
tree3e549f721d562cd4a6effb212928eb4b4d35c917 /MacOSX-Framework
parentd8b19cb41f4c772a26be0b9586f8ee8f82b35eca (diff)
downloadcurl-abf079ab561185b79da580cb61429fbf32d9d919.tar.gz
macos: fix .plist installation into framework
The copy command introduced in e498a9b1f had leftover '>' from the previous sed command it replaced, which broke its syntax. Fix by removing. Reported-by: Emanuele Torre <torreemanuele6@gmail.com>
Diffstat (limited to 'MacOSX-Framework')
-rwxr-xr-xMacOSX-Framework2
1 files changed, 1 insertions, 1 deletions
diff --git a/MacOSX-Framework b/MacOSX-Framework
index 69a4f477a..b8fef74b9 100755
--- a/MacOSX-Framework
+++ b/MacOSX-Framework
@@ -116,7 +116,7 @@ if test ! -z $SDK32; then
mkdir -p libcurl.framework/${FRAMEWORK_VERSION}/Resources
cp lib/.libs/libcurl.dylib libcurl.framework/${FRAMEWORK_VERSION}/libcurl
install_name_tool -id @rpath/libcurl.framework/${FRAMEWORK_VERSION}/libcurl libcurl.framework/${FRAMEWORK_VERSION}/libcurl
- cp lib/libcurl.plist >libcurl.framework/${FRAMEWORK_VERSION}/Resources/Info.plist
+ cp lib/libcurl.plist libcurl.framework/${FRAMEWORK_VERSION}/Resources/Info.plist
mkdir -p libcurl.framework/${FRAMEWORK_VERSION}/Headers/curl
cp include/curl/*.h libcurl.framework/${FRAMEWORK_VERSION}/Headers/curl
pushd libcurl.framework