Mesa (master): scons: Generate empty git_sha1.h for all platforms.

Vinson Lee vlee at kemper.freedesktop.org
Tue Apr 5 22:34:47 UTC 2011


Module: Mesa
Branch: master
Commit: 622ee08e516afc406b21df3d354037bab73a30a7
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=622ee08e516afc406b21df3d354037bab73a30a7

Author: Vinson Lee <vlee at vmware.com>
Date:   Tue Apr  5 15:32:39 2011 -0700

scons: Generate empty git_sha1.h for all platforms.

Fixes MinGW SCons build.

---

 src/mesa/SConscript |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/mesa/SConscript b/src/mesa/SConscript
index 4df3029..f98f7df 100644
--- a/src/mesa/SConscript
+++ b/src/mesa/SConscript
@@ -391,15 +391,15 @@ if env['gcc'] and env['platform'] != 'windows':
         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"])
+# 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"])
 
 
 #




More information about the mesa-commit mailing list