Skip to content

Instantly share code, notes, and snippets.

@ryandesign
Last active July 7, 2018 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryandesign/a7fdea794e1b84a01f15536fabe7f9ff to your computer and use it in GitHub Desktop.
Save ryandesign/a7fdea794e1b84a01f15536fabe7f9ff to your computer and use it in GitHub Desktop.
Fix the "-svd 0" Mini vMac 36 configuration flag so that it can create the "out" directory on Mac OS X 10.6 and earlier.
--- src/OSGLUCCO.m.orig 2018-07-06 23:28:04.000000000 -0500
+++ src/OSGLUCCO.m 2018-07-06 23:31:33.000000000 -0500
@@ -4014,7 +4014,7 @@
}
} else {
if ([fm respondsToSelector:@selector(
-createDirectoryAtURL:withIntermediateDirectories:attributes:error:
+createDirectoryAtPath:withIntermediateDirectories:attributes:error:
)])
{
if ([fm
@@ -4028,7 +4028,7 @@
}
} else
if ([fm respondsToSelector:
- @selector(createDirectoryAtURL:attributes:)])
+ @selector(createDirectoryAtPath:attributes:)])
{
if ([fm
createDirectoryAtPath:r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment