From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9215 invoked by alias); 15 Jan 2014 22:15:48 -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 9122 invoked by uid 89); 15 Jan 2014 22:15:46 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 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-f181.google.com Received: from mail-ig0-f181.google.com (HELO mail-ig0-f181.google.com) (209.85.213.181) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 15 Jan 2014 22:15:45 +0000 Received: by mail-ig0-f181.google.com with SMTP id j1so5868498iga.2 for ; Wed, 15 Jan 2014 14:15:43 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.43.138.8 with SMTP id iq8mr4750017icc.37.1389824143521; Wed, 15 Jan 2014 14:15:43 -0800 (PST) Received: by 10.64.81.195 with HTTP; Wed, 15 Jan 2014 14:15:43 -0800 (PST) In-Reply-To: References: Date: Wed, 15 Jan 2014 22:15:00 -0000 Message-ID: Subject: Re: 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/msg00041.txt.bz2 Guys after working with CT-NG for a bit I found the patch directory and recreated my patch to work with the existing system: in $CT_NG/patches/glibc/2.10.1/920-glibc-2.10.1-manual-make.patch diff -urN glibc-2.10.1-orig/manual/Makefile glibc-2.10.1/manual/Makefile --- glibc-2.10.1-orig/manual/Makefile 2006-01-07 22:43:47.000000000 -0800 +++ glibc-2.10.1/manual/Makefile 2014-01-15 11:49:08.256982014 -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 $@ On Wed, Jan 15, 2014 at 10:21 AM, Daniel Schultze wrote: > 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