mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-18 08:33:06 +00:00
fix mismatched parentheses
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@37589 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f76a08b9a0
commit
4469cb1820
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
||||
|
||||
Copyright (C) 2000-2010 Free Software Foundation
|
||||
Copyright (C) 2000-2014 Free Software Foundation
|
||||
|
||||
Authors: Philippe C.D. Robert
|
||||
Serg Stoyan
|
||||
|
@ -526,7 +526,7 @@
|
|||
}
|
||||
|
||||
// Check build tool path
|
||||
if (!buildTool || ![fm fileExistsAtPath:buildTool])
|
||||
if (!buildTool || !([fm fileExistsAtPath:buildTool] || [fm fileExistsAtPath:[buildTool stringByAppendingPathExtension: @"exe"]]))
|
||||
{
|
||||
NSRunAlertPanel(@"Project Build",
|
||||
@"Build tool '%@' not found. Check preferences.\n"
|
||||
|
|
Loading…
Reference in a new issue