Skip to content

Commit

Permalink
build(macOS): Restore support for spaces in the filesystem path (endl…
Browse files Browse the repository at this point in the history
…ess-sky#6237)

* Allow spaces in project path in Xcode
The changes to support downloading SDL were not compatible with spaces in any parent directory names.


* fix copy-paste error
  • Loading branch information
thomasballinger authored Sep 8, 2021
1 parent afde718 commit 84ddce4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EndlessSky.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "${SRCROOT}/utils/set_dylibs_rpath.sh";
shellScript = "\"${SRCROOT}/utils/set_dylibs_rpath.sh\"";
};
072599CB26A8C7AB007EC229 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
Expand All @@ -993,7 +993,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "${SRCROOT}/utils/fetch_sdl2_framework.sh";
shellScript = "\"${SRCROOT}/utils/fetch_sdl2_framework.sh\"";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
Expand Down

0 comments on commit 84ddce4

Please sign in to comment.