From: Emil Velikov Date: Mon, 6 Jun 2016 16:31:05 +0000 (+0100) Subject: mesa: automake: ensure that git_sha1.h.tmp has the right attributes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c424e00c39;p=mesa.git 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: Signed-off-by: Emil Velikov --- 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