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:
Riccardo Mottola 2014-01-13 11:23:25 +00:00
parent f76a08b9a0
commit 4469cb1820

View file

@ -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"