mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 01:28:07 +02:00
scons: Generate empty git_sha1.h for all platforms.
Fixes MinGW SCons build.
This commit is contained in:
parent
b4dfb7473e
commit
622ee08e51
1 changed files with 9 additions and 9 deletions
|
|
@ -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"])
|
||||
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue