summaryrefslogtreecommitdiff
path: root/src/SConscript
diff options
context:
space:
mode:
authorEric Engestrom <eric@engestrom.ch>2017-07-06 20:25:28 +0100
committerEric Engestrom <eric@engestrom.ch>2017-07-06 22:59:39 +0100
commit076faf8764d3cd8038145286f7533d0a18e82476 (patch)
treea7dc59a9fff663e8a06a11750e3a6f62b10950df /src/SConscript
parentbab03c06fc79ec5624982777684d0c5f123c127c (diff)
build systems: move git_sha1_gen.sh to bin/
There was no reason for this script to live outside the scripts directory. Suggested-by: Brian Paul <brianp@vmware.com> Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/SConscript')
-rw-r--r--src/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript
index c31e4ec06f..37b3f8572e 100644
--- a/src/SConscript
+++ b/src/SConscript
@@ -24,7 +24,7 @@ def write_git_sha1_h_file(filename):
tempfile = "git_sha1.h.tmp"
with open(tempfile, "w") as f:
- args = [ 'sh', Dir('#').abspath + '/git_sha1_gen.sh' ]
+ args = [ 'sh', Dir('#').abspath + '/bin/git_sha1_gen.sh' ]
try:
subprocess.Popen(args, stdout=f).wait()
except: