From patchwork Mon Apr 4 07:47:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kai Tietz X-Patchwork-Id: 89591 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 1947BB6FAB for ; Mon, 4 Apr 2011 17:48:38 +1000 (EST) Received: (qmail 15107 invoked by alias); 4 Apr 2011 07:48:35 -0000 Received: (qmail 15096 invoked by uid 22791); 4 Apr 2011 07:48:34 -0000 X-SWARE-Spam-Status: No, hits=-1.0 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, RFC_ABUSE_POST X-Spam-Check-By: sourceware.org Received: from mail-qw0-f47.google.com (HELO mail-qw0-f47.google.com) (209.85.216.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 04 Apr 2011 07:47:54 +0000 Received: by qwh5 with SMTP id 5so3823882qwh.20 for ; Mon, 04 Apr 2011 00:47:53 -0700 (PDT) MIME-Version: 1.0 Received: by 10.224.201.133 with SMTP id fa5mr564975qab.126.1301903273769; Mon, 04 Apr 2011 00:47:53 -0700 (PDT) Received: by 10.229.97.206 with HTTP; Mon, 4 Apr 2011 00:47:53 -0700 (PDT) Date: Mon, 4 Apr 2011 09:47:53 +0200 Message-ID: Subject: [patch ada]: Last fix for PR ada/47163 on windows native hosts From: Kai Tietz To: GCC Patches Cc: Arnaud Charlet X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Hello, as described in PR, there is a failure to copy adainclude/adalib libraries in MSYS. This is caused by LN_S set to cp -p for MSYS. This option for cp is not suitable to copy folder to folder in MSYS, and the additional option -r is necessary. ChangeLog 2011-04-04 Kai Tietz PR ada/47163 * gcc-interface/Makefile.in (LN_S): Use additional -r option for cp in MSYS. Ok for apply? Regards, Kai Index: Makefile.in =================================================================== --- Makefile.in (revision 171925) +++ Makefile.in (working copy) @@ -1461,7 +1461,7 @@ soext = .exe hyphen = _ LN = cp -p -LN_S = cp -p +LN_S = cp -pr .SUFFIXES: .sym