Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed bug 2000 - The framework INSTALL_PATH still uses @executable_path
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 011eca3 commit de90958
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Xcode/SDL_mixer.xcodeproj/project.pbxproj
Expand Up @@ -825,7 +825,7 @@
FLAC_MUSIC,
);
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 @@ -861,7 +861,7 @@
FLAC_MUSIC,
);
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 de90958

Please sign in to comment.