From patchwork Thu Jun 18 20:28:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 486486 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 2D6AB1401AB for ; Fri, 19 Jun 2015 06:29:44 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=uHiojiM0; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; q=dns; s=default; b=FQLmOcVKwNACsGyQce+K/7UZe9 ebDra9ZlcsG7dvIK4+tCh1GeJ6c93IPqGpuh8/D3WBQPe8jyR0TWf0X0qXCfrvHk lVDDRnQd3nTTB227FG0hij2fZyLRTtMTZfoHlOvNWYCYFmnohO3U63iKErqgVhLb NU9fSc0qI+fp4SV+w= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; s=default; bh=rl2z7yAki3cRFzSwLO62rcOCbIw=; b= uHiojiM0R6H6GV+xAMVkRBUe6clhzniyjnmYrWQ+fn91Cmc53GHOy4grwSXQnNNj GJwpycjLq2xJSCkghdtobhOyy4kia28HeogGgCds5UPz3V1hhHltyol6TEK9R2DD gptruDj7NBPfgPO2SOl8NmDK7uaTxT0Fyu9sna/RXZw= Received: (qmail 114976 invoked by alias); 18 Jun 2015 20:29:37 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 114961 invoked by uid 89); 18 Jun 2015 20:29:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: resqmta-po-04v.sys.comcast.net Received: from resqmta-po-04v.sys.comcast.net (HELO resqmta-po-04v.sys.comcast.net) (96.114.154.163) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 18 Jun 2015 20:29:35 +0000 Received: from resomta-po-14v.sys.comcast.net ([96.114.154.238]) by resqmta-po-04v.sys.comcast.net with comcast id hwVJ1q00A58ss0Y01wVZxR; Thu, 18 Jun 2015 20:29:33 +0000 Received: from [IPv6:2001:558:6045:a4:40c6:7199:cd03:b02d] ([IPv6:2001:558:6045:a4:40c6:7199:cd03:b02d]) by resomta-po-14v.sys.comcast.net with comcast id hwVX1q00Q2ztT3H01wVYT0; Thu, 18 Jun 2015 20:29:32 +0000 From: Mike Stump Subject: libiberty TAGS Message-Id: <17242213-EF29-4BDE-929B-AB383C8AA9B2@comcast.net> Date: Thu, 18 Jun 2015 13:28:32 -0700 To: GCC Patches Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) X-IsSubscribed: yes I was making tags in libiberty and noticed it just didn’t work. :-( This is one easy way to fix it. Ok? diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index f06cc69..876fab2 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -409,8 +409,9 @@ stamp-noasandir: etags tags: TAGS etags-subdir +VPATH = @srcdir@ TAGS: $(CFILES) - etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done` + cd $(srcdir) && etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done` # The standalone demangler (c++filt) has been moved to binutils. # But make this target work anyway for demangler hacking.