From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH] docs: make .txt files writable when building from r/o sources Date: Fri, 4 Jul 2014 15:47:04 +0100 Message-ID: <53B6BE68.3000408@citrix.com> References: <53B6D9CF0200007800020CB9@mail.emea.novell.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1X34m0-0001MR-DX for xen-devel@lists.xenproject.org; Fri, 04 Jul 2014 14:47:36 +0000 In-Reply-To: <53B6D9CF0200007800020CB9@mail.emea.novell.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Jan Beulich , xen-devel List-Id: xen-devel@lists.xenproject.org On 04/07/14 15:43, Jan Beulich wrote: > Otherwise an incremental build will fail to overwrite the destination > files. > > Signed-off-by: Jan Beulich > > --- a/docs/Makefile > +++ b/docs/Makefile > @@ -125,6 +125,7 @@ endif > html/%.txt: %.txt > $(INSTALL_DIR) $(@D) > cp $< $@ > + chmod u+w $@ Perhaps $(INSTALL_DATA) in preference to cp + chmod ? ~Andrew