mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-18 16:41:35 +00:00
Removed useless INSTDOMAIN variable during build phase
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@31699 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a0f1d6efca
commit
4cddbeda45
2 changed files with 4 additions and 10 deletions
|
@ -7,6 +7,9 @@
|
|||
* English.lproj/Info.gorm
|
||||
Version bump.
|
||||
|
||||
* Framework/PCProjectBuilder.m:
|
||||
Removed useless INSTDOMAIN variable during build phase.
|
||||
|
||||
2010-11-28 Riccardo Mottola
|
||||
|
||||
* Framework/PCMakefileFactory.m
|
||||
|
@ -20,7 +23,7 @@
|
|||
* Headers/ProjectCenter/PCDefines.h
|
||||
* Headers/ProjectCenter/PCProjectInspector.h:
|
||||
Set, use and create makefiles using ain installation DOMAIN and not a directory.
|
||||
|
||||
|
||||
2010-11-24 German Arias <german@xelalug.org>
|
||||
* Headers/ProjectCenter/PCProjectInspector.h:
|
||||
* Framework/PCProjectInspector.m:
|
||||
|
|
|
@ -323,17 +323,8 @@
|
|||
- (NSArray *)buildArguments
|
||||
{
|
||||
NSDictionary *projectDict = [project projectDict];
|
||||
NSString *instDomain = [projectDict objectForKey:PCInstallDomain];
|
||||
NSMutableArray *args = [NSMutableArray new];
|
||||
|
||||
if (![instDomain isEqualToString:@"LOCAL"] &&
|
||||
![instDomain isEqualToString:@"SYSTEM"] &&
|
||||
![instDomain isEqualToString:@"USER"] &&
|
||||
![instDomain isEqualToString:@"NETWORK"] &&
|
||||
![instDomain isEqualToString:@""])
|
||||
{
|
||||
[args addObject:[NSString stringWithFormat:@"INSTDOMAIN=%@", instDomain]];
|
||||
}
|
||||
|
||||
[args addObjectsFromArray:[projectDict objectForKey:PCBuilderArguments]];
|
||||
|
||||
|
|
Loading…
Reference in a new issue