summaryrefslogtreecommitdiffstats
path: root/src/mesa/SConscript
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-04-05 14:07:41 -0600
committerBrian Paul <[email protected]>2011-04-05 14:07:48 -0600
commit0c2455031d7e5d969252ddb892b31365f6bb5da2 (patch)
treebe62695ade5c229303a18aa208c2daa56b2e7cc3 /src/mesa/SConscript
parentde579a16298e29358fec08bd7cfe3e505674705a (diff)
scons: generate empty git_sha1.h file for now
My feeble attempt to invoke the extract_git_sha1 script from SConscript didn't work. Hopefully this will do for now.
Diffstat (limited to 'src/mesa/SConscript')
-rw-r--r--src/mesa/SConscript12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/SConscript b/src/mesa/SConscript
index 261242f6fc9..4df3029f1ee 100644
--- a/src/mesa/SConscript
+++ b/src/mesa/SConscript
@@ -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
#