mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
backport fix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/stable@33089 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
00ce4c24b5
commit
f2edbb5b75
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-05-23 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSBundle.m:
|
||||
Fixe to resolve links and standardize path to current executable.
|
||||
|
||||
2011-05-22 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/Additions/GSMime.m:
|
||||
|
|
|
@ -287,7 +287,11 @@ GSPrivateExecutablePath()
|
|||
{
|
||||
executablePath = AbsolutePathOfExecutable(executablePath, YES);
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
executablePath = [executablePath stringByResolvingSymlinksInPath];
|
||||
executablePath = [executablePath stringByStandardizingPath];
|
||||
}
|
||||
IF_NO_GC([executablePath retain];)
|
||||
beenHere = YES;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue