From: Jose Fonseca Date: Mon, 23 Mar 2015 10:48:31 +0000 (+0000) Subject: scons: Fix git_sha1.h generation fallback. X-Git-Tag: upstream/17.1.0~19805 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5db57b8a55bb1961f1ada029f63c1f07511d60aa;p=platform%2Fupstream%2Fmesa.git scons: Fix git_sha1.h generation fallback. I didn't meant to remove the 'if not os.path.exists(filename)' statement. Reviewed-by: Brian Paul --- diff --git a/src/mesa/SConscript b/src/mesa/SConscript index a563fd2..5b80a21 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -130,9 +130,10 @@ def write_git_sha1_h_file(filename): (commit, foo) = subprocess.Popen(args, stdout=subprocess.PIPE).communicate() except: # git log command didn't work - dirname = os.path.dirname(filename) - if not os.path.exists(dirname): - os.makedirs(dirname) + if not os.path.exists(filename): + dirname = os.path.dirname(filename) + if not os.path.exists(dirname): + os.makedirs(dirname) # create an empty file if none already exists f = open(filename, "w") f.close()