mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-19 00:51:51 +00:00
* Framework/PCMakefileFactory.m: Check if buildDir is nil before
generating the BUILD_DIR directive in the make file. Sometimes this is coming up with (nil) on Windows which is causing the build phase to fail. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@28716 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ae023c0c49
commit
1a3b127a7e
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2009-09-20 03:45-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Framework/PCMakefileFactory.m: Check if buildDir is nil before
|
||||
generating the BUILD_DIR directive in the make file. Sometimes
|
||||
this is coming up with (nil) on Windows which is causing the build
|
||||
phase to fail.
|
||||
|
||||
2009-09-19 Riccardo Mottola <rmottola@users.sf.net>
|
||||
|
||||
* Images/Options.tiff
|
||||
|
|
|
@ -107,7 +107,7 @@ static PCMakefileFactory *_factory = nil;
|
|||
|
||||
[mfile appendString: @"\ninclude $(GNUSTEP_MAKEFILES)/common.make\n"];
|
||||
|
||||
if (![buildDir isEqualToString: @""])
|
||||
if (![buildDir isEqualToString: @""] && buildDir != nil)
|
||||
{
|
||||
[mfile appendString:
|
||||
[NSString stringWithFormat: @"\nGNUSTEP_BUILD_DIR = %@\n",
|
||||
|
|
Loading…
Reference in a new issue