From patchwork Tue Jun 10 06:51:54 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 357749 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 6BA301400B2 for ; Tue, 10 Jun 2014 16:50:41 +1000 (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:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=vifjAtlUMw5Gnk/X3aqkLPhNS6h3x 2BzZBb+S8r54t/0Ui6myWoAJmRIRZxW13RzWi4jUQ+cfngMsQKFn9NsLVMyGbsll AHoMM16xFJ97INo8OneEzAiIfpSZqoaaSc5R3Vjew1RTcOA8syEuek12wab9w2VW xQtk2ffZesDKdY= 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:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=PtmJLVJ5C5HJeAS6ByenArHJzJk=; b=RgN 6zDwh4Dd8quZ+h6ozZhpyZVzYldyL7rQ3dJ5oeQ8Ety4K/6zcttl0t0wWFnoIwgt 4v65jB9ayXjcQ0dzNbR1Uao6dWwn1kJmPhrUeStMieKE/QvbkDlEl/fGqjJvISxd I8bWWlamsTM+b6eNtLfDBoTRGjQCPf4MOXMIvlbA= Received: (qmail 9046 invoked by alias); 10 Jun 2014 06:50:35 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 9029 invoked by uid 89); 10 Jun 2014 06:50:34 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.9 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Date: Tue, 10 Jun 2014 12:21:54 +0530 From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Subject: [PATCH] Remove useless $(.) Message-ID: <20140610065153.GA24193@spoyarek.pnq.redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.22.1-rc1 (2013-10-16) Andreas Schwab pointed out earlier that not only is $(.) useless, it also doesn't exist. Remove it. Siddhesh commit 0e9d2f7d62ae4483fff3d959f476cd455fe9da70 Author: Siddhesh Poyarekar Date: Tue Jun 10 12:20:29 2014 +0530 Remove unnecessary $(.) The variable is not necessary, especially since it does not exist. diff --git a/ChangeLog b/ChangeLog index d693b04..eb9865f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-06-10 Siddhesh Poyarekar + + * benchtests/Makefile ($(objpfx)bench-%.c): Remove $(.). + 2014-06-09 Joseph Myers * conform/data/termios.h-data [POSIX] (IUCLC): Do not expect diff --git a/benchtests/Makefile b/benchtests/Makefile index fbcee13..c7b70c4 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -141,5 +141,5 @@ $(objpfx)bench-%.c: %-inputs $(bench-deps) { if [ -n "$($*-INCLUDE)" ]; then \ cat $($*-INCLUDE); \ fi; \ - $(.)scripts/bench.py $(patsubst %-inputs,%,$<); } > $@-tmp + scripts/bench.py $(patsubst %-inputs,%,$<); } > $@-tmp mv -f $@-tmp $@