scons: generate empty git_sha1.h file for now
authorBrian Paul <brianp@vmware.com>
Tue, 5 Apr 2011 20:07:41 +0000 (14:07 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 5 Apr 2011 20:07:48 +0000 (14:07 -0600)
My feeble attempt to invoke the extract_git_sha1 script from
SConscript didn't work.  Hopefully this will do for now.

src/mesa/SConscript

index 261242f6fc9ae49d2da055a47ea294a2d3d8101b..4df3029f1ee6483996175a0b9bb428e6bee4f042 100644 (file)
@@ -390,6 +390,18 @@ if env['gcc'] and env['platform'] != 'windows':
         # build dir) to the include path
         env.Append(CPPPATH = [matypes[0].dir])
 
+
+    # Create the git_sha1.h file if it doesn't exist already
+    try:
+        f = open('main/git_sha1.h', 'r')
+        f.close()
+    except IOError:
+        f = open('main/git_sha1.h', 'w')
+        f.close()
+    # and update CPPPATH so the git_sha1.h header can be found
+    env.Append(CPPPATH = ["#" + env['build_dir'] + "/mesa/main"])
+
+
 #
 # Libraries
 #