587b25d
--- Source/setup_configure.py.old	2010-12-31 08:19:01.000000000 -0500
587b25d
+++ Source/setup_configure.py	2011-06-22 21:07:07.311172602 -0400
587b25d
@@ -322,9 +322,6 @@
587b25d
             'mac_os_x_arch':    self.mac_os_x_arch
587b25d
             }
587b25d
 
587b25d
-        if not self.checkAllOptionsUsed():
587b25d
-            return 1
587b25d
-
587b25d
         print( 'Info: Creating Makefile for Source' )
587b25d
 
587b25d
         major, minor, patch = self.getSvnVersion( svn_include )
587b25d
@@ -419,6 +416,9 @@
587b25d
                 print( 'Info: Using unix makefile template' )
587b25d
             makefile.write( self.makefile_template % template_values )
587b25d
 
587b25d
+        if not self.checkAllOptionsUsed():
587b25d
+            return 1
587b25d
+
587b25d
         f = open( 'pysvn_common.mak', 'r' )
587b25d
         makefile.write( f.read() % template_values )
587b25d
         f.close()