From patchwork Thu Nov 12 19:23:45 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 543627 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 49B6A141405 for ; Fri, 13 Nov 2015 06:25:16 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=QCRdaF+g; 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=gRO0oe5pLMa6I3kcDYoPqkWrWW sTTjuO/sGv6OrPCDI6JW2uioLSi8JAUd9csTzmPa1wexh6Uoyfkxc/mQbzX2w9ZZ m7s+AWEQLdg0jfVtmIwxKs3HIxdfjsI2/8TrwJVWp0lJ4Cu4v+EMDuKJQhYPk2MR 3PcrOGsMGo3VyLwwE= 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=3e+EOjme9CCs36BAlzqoWdaYcnE=; b= QCRdaF+gl+z2K4EhDfR/43SyBin5VhWJCarSbo7OdUlHmpEQeEeyW5Ykbe0SJikO JgJUa5eCKea4FyRIuoDp8m/yAMIVn3bEzHWuhQ6loqMeC9trVSPVwgz9my+FUtm1 GE0zFzN6qrBeeX1WSF9OI/IjuFzCTL8BAZ7w0ggs0P0= Received: (qmail 70473 invoked by alias); 12 Nov 2015 19:25:08 -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 70458 invoked by uid 89); 12 Nov 2015 19:25:07 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 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-ch2-05v.sys.comcast.net Received: from resqmta-ch2-05v.sys.comcast.net (HELO resqmta-ch2-05v.sys.comcast.net) (69.252.207.37) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 12 Nov 2015 19:25:06 +0000 Received: from resomta-ch2-14v.sys.comcast.net ([69.252.207.110]) by resqmta-ch2-05v.sys.comcast.net with comcast id gjR11r0052PT3Qt01jR4jB; Thu, 12 Nov 2015 19:25:04 +0000 Received: from [IPv6:2001:558:6045:a4:40c6:7199:cd03:b02d] ([IPv6:2001:558:6045:a4:40c6:7199:cd03:b02d]) by resomta-ch2-14v.sys.comcast.net with comcast id gjR21r00B2ztT3H01jR3xd; Thu, 12 Nov 2015 19:25:04 +0000 From: Mike Stump Subject: libiberty TAGS Message-Id: <512C1C6F-9FA3-403D-AC9D-ADC6BE58CB4B@comcast.net> Date: Thu, 12 Nov 2015 11:23:45 -0800 To: GCC Patches Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) X-IsSubscribed: yes I applied this one as obvious. * Makefile.in (etags tags TAGS): Use && instead of ;. Index: Makefile.in =================================================================== --- Makefile.in (revision 230269) +++ Makefile.in (working copy) @@ -409,7 +409,7 @@ stamp-noasandir: .PHONY: all etags tags TAGS ls clean stage1 stage2 etags tags TAGS: etags-subdir - cd $(srcdir); etags $(CFILES) + cd $(srcdir) && etags $(CFILES) # The standalone demangler (c++filt) has been moved to binutils. # But make this target work anyway for demangler hacking.