SDL_image: dist: SHELL: prefix uses spaces as command separator

From 8de30441df7e9419bf9fe67e0950ec13c6958ba3 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Fri, 6 Jan 2023 19:43:46 +0100
Subject: [PATCH] dist: SHELL: prefix uses spaces as command separator

---
 Xcode/pkg-support/resources/CMake/sdl3_image-config.cmake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Xcode/pkg-support/resources/CMake/sdl3_image-config.cmake b/Xcode/pkg-support/resources/CMake/sdl3_image-config.cmake
index af8b3d92..27f79fc7 100644
--- a/Xcode/pkg-support/resources/CMake/sdl3_image-config.cmake
+++ b/Xcode/pkg-support/resources/CMake/sdl3_image-config.cmake
@@ -49,9 +49,9 @@ if(NOT TARGET SDL3_image::SDL3_image)
     add_library(SDL3_image::SDL3_image INTERFACE IMPORTED)
     set_target_properties(SDL3_image::SDL3_image
         PROPERTIES
-            INTERFACE_COMPILE_OPTIONS "SHELL:-F;${_sdl3image_framework_parent_path}"
+            INTERFACE_COMPILE_OPTIONS "SHELL:-F ${_sdl3image_framework_parent_path}"
             INTERFACE_INCLUDE_DIRECTORIES "${_sdl3image_framework_path}/Headers"
-            INTERFACE_LINK_OPTIONS "SHELL:-F;${_sdl3image_framework_parent_path};SHELL:-framework;SDL3_image"
+            INTERFACE_LINK_OPTIONS "SHELL:-F ${_sdl3image_framework_parent_path};SHELL:-framework SDL3_image"
             COMPATIBLE_INTERFACE_BOOL "SDL3_SHARED"
             INTERFACE_SDL3_SHARED "ON"
     )