From 155fb227e6ca9acce6a0267af2f764b586f1b73f Mon Sep 17 00:00:00 2001 From: Timothee Besset Date: Wed, 5 Sep 2012 14:00:05 -0500 Subject: [PATCH] OSX with port seems to work out of the box --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 09d33cd..2cb26fa 100644 --- a/config.py +++ b/config.py @@ -185,7 +185,7 @@ class Config: if 'setup' in self.target_selected: self.Setup() - if ( self.platform != 'win32' ): + if ( self.platform == 'Linux' ): finish_command = Command( 'finish', [], self.FinishBuild ) Depends( finish_command, DEFAULT_TARGETS ) Default( finish_command )