From 22e6600970656cc57a4756615cd4e1d668e34302 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Tue, 24 Nov 1998 03:46:21 +0000 Subject: [PATCH] Minor feature fix - Info.plist -> Info-gnustep.plist git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3315 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 4 +++- Source/NSBundle.m | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index efb97d362..f0459e864 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,9 @@ -Mon Nov 23 22:10:00 1998 Richard Frith-Macdonald +Mon Nov 24 4:10:00 1998 Richard Frith-Macdonald * src/Tools/GNUmakefile: removed make_services * src/Tools/make_services.m: Removed - moved to gui library. + * src/NSBundle.m: Changed Info.plist to Info-gnustep.plist since + that's what GNUstep uses instead. Fri Nov 20 20:10:00 1998 Richard Frith-Macdonald diff --git a/Source/NSBundle.m b/Source/NSBundle.m index 4674c0638..b09b0d354 100644 --- a/Source/NSBundle.m +++ b/Source/NSBundle.m @@ -787,7 +787,7 @@ _bundle_load_callback(Class theClass, Category *theCategory) if (_infoDict) return _infoDict; - path = [self pathForResource: @"Info" ofType: @"plist"]; + path = [self pathForResource: @"Info-gnustep" ofType: @"plist"]; if (path) _infoDict = [[NSDictionary alloc] initWithContentsOfFile: path]; else