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: 1409 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 $@