From 2c424e00c3995a6a88f4db0c5dc9fd03ea749ebd Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 6 Jun 2016 17:31:05 +0100 Subject: [PATCH] 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 --- src/Makefile.am | 1 + 1 file changed, 1 insertion(+) 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 -- 2.30.2