From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12730 invoked by alias); 15 Jan 2014 18:21:29 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Received: (qmail 12714 invoked by uid 89); 15 Jan 2014 18:21:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ig0-f174.google.com Received: from mail-ig0-f174.google.com (HELO mail-ig0-f174.google.com) (209.85.213.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 15 Jan 2014 18:21:27 +0000 Received: by mail-ig0-f174.google.com with SMTP id hl1so8422404igb.1 for ; Wed, 15 Jan 2014 10:21:25 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.43.138.8 with SMTP id iq8mr3827101icc.37.1389810085603; Wed, 15 Jan 2014 10:21:25 -0800 (PST) Received: by 10.64.81.195 with HTTP; Wed, 15 Jan 2014 10:21:25 -0800 (PST) Date: Wed, 15 Jan 2014 18:21:00 -0000 Message-ID: Subject: GNU Make From: Daniel Schultze To: crossgcc@sourceware.org Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-01/txt/msg00038.txt.bz2 Hey guys, I'm new to crosstool-ng, so far it looks like a good utility. I want to contribute a patch for glibc 2.10.1 as it will correct its known issue with implicit and explicit rules on the same line. Other patches can follow the same pattern of moving the rules to separate lines. --- glibc-2.10.1/glibc-2.10.1/manual/Makefile-orig 2013-12-06 11:03:33.170318872 -0800 +++ glibc-2.10.1/glibc-2.10.1/manual/Makefile 2013-12-06 11:02:35.555022786 -0800 @@ -232,7 +232,11 @@ .PHONY: stubs stubs: $(objpfx)stubs endif -$(objpfx)stubs ../po/manual.pot $(objpfx)stamp%: +$(objpfx)stamp%: + $(make-target-directory) + touch $@ + +$(objpfx)stubs ../po/manual.pot: $(make-target-directory) touch $@ -Dan -- For unsubscribe information see http://sourceware.org/lists.html#faq