diff options
author | Emil Velikov <[email protected]> | 2016-06-06 17:31:05 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-06-07 12:21:46 +0100 |
commit | 2c424e00c3995a6a88f4db0c5dc9fd03ea749ebd (patch) | |
tree | 8a9344ac0a47971c517752cf741285cbb16045ac /src/Makefile.am | |
parent | 359d9dfec3381284b044d6c9bcf7a648ea8c651a (diff) |
mesa: automake: ensure that git_sha1.h.tmp has the right attributes
... when copied from git_sha1.h.
As the latter file can we lacking the write attribute, one should set it
explicitly. Otherwise we'll get a warning/failure at cleanup stage.
Cc: <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 08446a8d14a..a5c54ffc03b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -33,6 +33,7 @@ git_sha1.h.tmp: fi \ else \ cp $(srcdir)/git_sha1.h git_sha1.h.tmp ;\ + chmod u+w git_sha1.h.tmp; \ fi git_sha1.h: git_sha1.h.tmp |