From patchwork Wed Jan 15 22:15:43 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Schultze X-Patchwork-Id: 311474 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 04EE62C0084 for ; Thu, 16 Jan 2014 09:15:58 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; q=dns; s=default; b=Kc IAddvl/3l0rv01peW5L1wg9G6RhDhs8PBq7RFjGM1wpFeFRPqO9yAssdbbJetVFv KqxBRaAOweYDaANbShBUaDq+uFkbHU0OvrfBD+nsEAWUQ2/3J2PiQYoRBN9u/BSC FM1bXA7keZrTMS2Zw7G/P8KJ5ACj9opQeLJZelrds= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; s=default; bh=rX33tL2C QP/Lcyje3yq4wYRGDng=; b=SEam1iegdInY93kR/nn0Che2PBHw464Ywlb2Zaqu mTmwnj6H2OVs15HLGsmS6kfzEq0GZMKCC4zexinWY6rxMtjX3k9Mb/hLOTRO9gjD ErwuOLTi+Kiwo5QLCnMoGhaAGJVeBuFGEY2+aLPvmK7tRIzuhB8xcqyZAZbyUb2+ Xaw= 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-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Delivered-To: mailing list crossgcc@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 14:15:43 -0800 Message-ID: Subject: Re: GNU Make From: Daniel Schultze To: crossgcc@sourceware.org X-IsSubscribed: yes 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 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 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 $@