From 33d522d7bd1c8f40deb817a0814987e9ced45778 Mon Sep 17 00:00:00 2001 From: Andrew Murray <3112309+radarhere@users.noreply.github.com> Date: Mon, 30 Jun 2025 19:32:15 +1000 Subject: [PATCH] Updated capitalisation --- .github/workflows/wheels-dependencies.sh | 6 +++--- patches/iOS/libwebp-1.5.0.tar.gz.patch | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/wheels-dependencies.sh b/.github/workflows/wheels-dependencies.sh index 7c01deeac..b7a418f44 100755 --- a/.github/workflows/wheels-dependencies.sh +++ b/.github/workflows/wheels-dependencies.sh @@ -51,14 +51,14 @@ if [[ "$CIBW_PLATFORM" == "ios" ]]; then # GNU Autotools doesn't recognize the existence of arm64-apple-ios-simulator # as a valid host. However, the only difference between arm64-apple-ios and # arm64-apple-ios-simulator is the choice of sysroot, and that is - # coordinated by CC,CFLAGS etc. From the perspective of configure, the two + # coordinated by CC, CFLAGS etc. From the perspective of configure, the two # platforms are identical, so we can use arm64-apple-ios consistently. # This (mostly) avoids us needing to patch config.sub in dependency sources. HOST_CONFIGURE_FLAGS="--disable-shared --enable-static --host=$GNU_ARCH-apple-ios --build=$GNU_ARCH-apple-darwin" - # Cmake has native support for iOS. However, most of that support is based + # CMake has native support for iOS. However, most of that support is based # on using the Xcode builder, which isn't very helpful for most of Pillow's - # dependencies. Therefore, we lean on the OSX configurations, plus CC/CFLAGS + # dependencies. Therefore, we lean on the OSX configurations, plus CC, CFLAGS # etc. to ensure the right sysroot is selected. HOST_CMAKE_FLAGS="-DCMAKE_SYSTEM_NAME=$CMAKE_SYSTEM_NAME -DCMAKE_SYSTEM_PROCESSOR=$GNU_ARCH -DCMAKE_OSX_DEPLOYMENT_TARGET=$IPHONEOS_DEPLOYMENT_TARGET -DCMAKE_OSX_SYSROOT=$IOS_SDK_PATH -DBUILD_SHARED_LIBS=NO" diff --git a/patches/iOS/libwebp-1.5.0.tar.gz.patch b/patches/iOS/libwebp-1.5.0.tar.gz.patch index 2ea587554..fefb72b68 100644 --- a/patches/iOS/libwebp-1.5.0.tar.gz.patch +++ b/patches/iOS/libwebp-1.5.0.tar.gz.patch @@ -1,9 +1,9 @@ # libwebp example binaries require dependencies that aren't available for iOS builds. # There's also no easy way to invoke the build to *exclude* the example builds. -# Since we don't need the examples anyway, remove them from the makefile. +# Since we don't need the examples anyway, remove them from the Makefile. # -# As a point of reference, libwebp provides an XCframework build script that involves -# 7 separate invocations of make to avoid building the examples. Patching the makefile +# As a point of reference, libwebp provides an XCFramework build script that involves +# 7 separate invocations of make to avoid building the examples. Patching the Makefile # to remove the examples is a simpler approach, and one that is more compatible with # the existing multibuild infrastructure. #