configure: don't use "with" for Python 2.5 and older
authorNathan Rajlich <nathan@tootallnate.net>
Wed, 11 Apr 2012 18:16:11 +0000 (11:16 -0700)
committerNathan Rajlich <nathan@tootallnate.net>
Wed, 11 Apr 2012 18:16:11 +0000 (11:16 -0700)
configure

index 1a94251..ef34cf8 100755 (executable)
--- a/configure
+++ b/configure
@@ -342,8 +342,8 @@ pprint.pprint(output, indent=2)
 def write(filename, data):
   filename = os.path.join(root_dir, filename)
   print "creating ", filename
-  with open(filename, 'w+') as f:
-    f.write(data)
+  f = open(filename, 'w+')
+  f.write(data)
 
 write('config.gypi', "# Do not edit. Generated by the configure script.\n" +
   pprint.pformat(output, indent=2))