From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 120399 invoked by alias); 9 Jun 2015 16:19:15 -0000 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 Received: (qmail 120315 invoked by uid 89); 9 Jun 2015 16:19:14 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=ham version=3.3.2 X-HELO: fencepost.gnu.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (208.118.235.10) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 09 Jun 2015 16:19:13 +0000 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53741) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1Z2MF5-0002Rp-9D for gcc-patches@gnu.org; Tue, 09 Jun 2015 12:19:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z2MF0-0003fg-Po for gcc-patches@gnu.org; Tue, 09 Jun 2015 12:19:10 -0400 Received: from einhorn.in-berlin.de ([2001:bf0:c000::1:8]:47403) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z2MF0-0003dY-G5 for gcc-patches@gnu.org; Tue, 09 Jun 2015 12:19:06 -0400 X-Envelope-From: doko@ubuntu.com Received: from [192.168.178.20] (ip5f5bd51a.dynamic.kabel-deutschland.de [95.91.213.26] (may be forged)) (authenticated bits=0) by einhorn.in-berlin.de (8.14.4/8.14.4/Debian-4) with ESMTP id t59GJ1Sw005956 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 9 Jun 2015 18:19:01 +0200 Message-ID: <557711F5.205@ubuntu.com> Date: Tue, 09 Jun 2015 16:21:00 -0000 From: Matthias Klose User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: "gcc-patches@gnu.org" CC: David Malcolm Subject: [patch] [jit] Install headers using INSTALL_DATA Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:bf0:c000::1:8 X-SW-Source: 2015-06/txt/msg00691.txt.bz2 Install the gcc/jit header files without the x bit set. Ok for the trunk and the 5 branch? Matthias gcc/jit/ 2015-06-09 Matthias Klose * Make-lang.in (jit.install-common): Install headers using INSTALL_DATA. Index: gcc/jit/Make-lang.in =================================================================== --- gcc/jit/Make-lang.in (revision 224282) +++ gcc/jit/Make-lang.in (working copy) @@ -268,9 +268,9 @@ ln -sf \ $(LIBGCCJIT_SONAME_SYMLINK)\ $(DESTDIR)/$(libdir)/$(LIBGCCJIT_LINKER_NAME_SYMLINK) - $(INSTALL_PROGRAM) $(srcdir)/jit/libgccjit.h \ + $(INSTALL_DATA) $(srcdir)/jit/libgccjit.h \ $(DESTDIR)/$(includedir)/libgccjit.h - $(INSTALL_PROGRAM) $(srcdir)/jit/libgccjit++.h \ + $(INSTALL_DATA) $(srcdir)/jit/libgccjit++.h \ $(DESTDIR)/$(includedir)/libgccjit++.h jit.install-man: