Merge pull request #633 from rgeary1/NestedPhonyPrintsDone
authorEvan Martin <martine@danga.com>
Sun, 11 Aug 2013 17:02:06 +0000 (10:02 -0700)
committerEvan Martin <martine@danga.com>
Sun, 11 Aug 2013 17:02:06 +0000 (10:02 -0700)
Fix : Pure nested phony rules do not print "no work to do"

platform_helper.py

index e615660..b7447a1 100644 (file)
@@ -41,9 +41,8 @@ class Platform( object ):
             self._platform = 'mingw'
         elif self._platform.startswith('win'):
             self._platform = 'msvc'
-       elif self._platform.startswith('bitrig'):
-           self._platform = 'bitrig'
-
+        elif self._platform.startswith('bitrig'):
+            self._platform = 'bitrig'
 
     def platform(self):
         return self._platform