Skip to content

Commit

Permalink
Fixed bug 2000 - The framework INSTALL_PATH still uses @executable_path
Browse files Browse the repository at this point in the history
dak180

Since the MACOSX_DEPLOYMENT_TARGET is 10.5; INSTALL_PATH should use @rpath.

See http://www.dribin.org/dave/blog/archives/2009/11/15/rpath/ for the details on why this is a good idea.
  • Loading branch information
slouken committed Jul 31, 2013
1 parent 4c54bb8 commit 0aa0b39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Xcode/SDL_image.xcodeproj/project.pbxproj
Expand Up @@ -524,7 +524,7 @@
);
FRAMEWORK_VERSION = A;
INFOPLIST_FILE = "Info-Framework.plist";
INSTALL_PATH = "@executable_path/../Frameworks";
INSTALL_PATH = "@rpath";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/Frameworks";
OTHER_LDFLAGS = (
"-weak_framework",
Expand Down Expand Up @@ -645,7 +645,7 @@
);
FRAMEWORK_VERSION = A;
INFOPLIST_FILE = "Info-Framework.plist";
INSTALL_PATH = "@executable_path/../Frameworks";
INSTALL_PATH = "@rpath";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/Frameworks";
OTHER_LDFLAGS = (
"-weak_framework",
Expand Down

0 comments on commit 0aa0b39

Please sign in to comment.