From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11237 invoked by alias); 15 Mar 2010 07:46:36 -0000 Received: (qmail 11224 invoked by uid 22791); 15 Mar 2010 07:46:36 -0000 X-SWARE-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from mel.act-europe.fr (HELO mel.act-europe.fr) (212.99.106.210) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 15 Mar 2010 07:46:31 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id B4973CB0271; Mon, 15 Mar 2010 08:46:29 +0100 (CET) Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SJ9BVcOnLh6A; Mon, 15 Mar 2010 08:46:29 +0100 (CET) Received: from [192.168.1.2] (91-172-199-106.rev.libertysurf.net [91.172.199.106]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mel.act-europe.fr (Postfix) with ESMTP id 7789BCB0253; Mon, 15 Mar 2010 08:46:29 +0100 (CET) From: Eric Botcazou To: Chris Demetriou Subject: Re: [obvious patch] add missing chmod to when copying headers Date: Mon, 15 Mar 2010 07:49:00 -0000 User-Agent: KMail/1.9.9 Cc: gcc-patches@gcc.gnu.org References: <2e7be40c1003111231u30e5a84fxb23393dcc4fab84c@mail.gmail.com> In-Reply-To: <2e7be40c1003111231u30e5a84fxb23393dcc4fab84c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Content-Disposition: inline Message-Id: <201003150845.53312.ebotcazou@adacore.com> Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2010-03/txt/msg00562.txt.bz2 > 2010-03-11  Chris Demetriou  > >         * Makefile.in (stmp-int-hdrs): Make include/unwind.h, >         include/stdint-gcc.h, and include/stdint.h world-readable. This breaks platforms without include/stdint.h though: http://gcc.gnu.org/ml/gcc/2009-07/msg00625.html if [ none = wrap ]; then \ rm -f include/stdint-gcc.h; \ cp ../../gcc-head-src/gcc/ginclude/stdint-gcc.h include/stdint-gcc.h; \ chmod a+r include/stdint-gcc.h; \ cp ../../gcc-head-src/gcc/ginclude/stdint-wrap.h include/stdint.h; \ elif [ none = provide ]; then \ cp ../../gcc-head-src/gcc/ginclude/stdint-gcc.h include/stdint.h; \ fi chmod a+r include/stdint.h chmod: cannot access `include/stdint.h': No such file or directory make[2]: *** [stmp-int-hdrs] Error 1 -- Eric Botcazou