2005-02-10 01:05 Alexander Malmberg <alexander@malmberg.org>

* Tools/gdnc.m (main): Remove the program name from the arguments
	given to the new task.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20681 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Alexander Malmberg 2005-02-10 00:04:32 +00:00
parent 98e22aaf4b
commit bd52d362a2
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2005-02-10 01:05 Alexander Malmberg <alexander@malmberg.org>
* Tools/gdnc.m (main): Remove the program name from the arguments
given to the new task.
2005-02-08 11:20 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSString.m: (unicodeString) rewrite to conform to coding

View file

@ -1047,6 +1047,7 @@ main(int argc, char** argv, char** env)
t = [NSTask new];
NS_DURING
{
[args removeObjectAtIndex: 0];
[args addObject: @"--daemon"];
[t setLaunchPath: [[NSBundle mainBundle] executablePath]];
[t setArguments: args];