From patchwork Tue Jul 23 18:49:14 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arvind Sankar X-Patchwork-Id: 1135881 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-505569-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=alum.mit.edu Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="Bk8/89xc"; dkim-atps=neutral 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 45tSFP06D5z9sDQ for ; Wed, 24 Jul 2019 04:49:27 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=s/P/NmlyDe1u0Eq+8CKvO17HCAQB76Kf8+j8PQ+Jz245+YXdWjUSv Me41W+BhY32XXAALuss1WFQzuWsO0PSaA4++gWbQ7/ib9L2y8GN98aV5naIfO27q B1BGXNT34IGRhgFZN6WtbzuJrVNfc8sEnJtZCcl+nuxaHhnVTLJLbo= 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:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=x/wKQwHbjkMlKUmPVXs2gvA5lBA=; b=Bk8/89xcmwRX4XqW6LOF ESHqH0p25S94BqvjXlBRBQB0gWgCYS8E4rLapr0aWvOlkn++yurLAZbwzJqk5mqc VbARJyxh45Z6FXTSA9ge4vWvFdEXF8BA4OhmUnt5CSka6gaef2zZZnbrcL+F5cl2 9GrEDN8wQ7LRD0b9oK7cW0M= Received: (qmail 37230 invoked by alias); 23 Jul 2019 18:49:19 -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 36668 invoked by uid 89); 23 Jul 2019 18:49:19 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.6 required=5.0 tests=BAYES_00, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS, UPPERCASE_50_75 autolearn=ham version=3.3.1 spammy= X-HELO: mail-qt1-f176.google.com Received: from mail-qt1-f176.google.com (HELO mail-qt1-f176.google.com) (209.85.160.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 23 Jul 2019 18:49:18 +0000 Received: by mail-qt1-f176.google.com with SMTP id z4so42951369qtc.3 for ; Tue, 23 Jul 2019 11:49:17 -0700 (PDT) Received: from rani.riverdale.lan ([2001:470:1f07:5f3::b55f]) by smtp.gmail.com with ESMTPSA id b18sm16024554qkc.112.2019.07.23.11.49.15 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 23 Jul 2019 11:49:15 -0700 (PDT) Date: Tue, 23 Jul 2019 14:49:14 -0400 From: Arvind Sankar To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix typo LIBGCCJIT_SYMLINK -> LIBGCCJIT_SONAME_SYMLINK Message-ID: <20190723184911.GA1127549@rani.riverdale.lan> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) There seems to be a typo in gcc/jit/Make-lang.in where it references an undefined LIBGCCJIT_SYMLINK instead of LIBGCCJIT_SONAME_SYMLINK. --- gcc/jit/Make-lang.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gcc/jit/Make-lang.in b/gcc/jit/Make-lang.in index 660f54d78bd..5cfd6035d8c 100644 --- a/gcc/jit/Make-lang.in +++ b/gcc/jit/Make-lang.in @@ -65,7 +65,7 @@ LIBGCCJIT_SONAME_OPTION = \ -Wl$(COMMA)$(LD_SONAME_OPTION)$(COMMA)$(LIBGCCJIT_SONAME)) jit: $(LIBGCCJIT_FILENAME) \ - $(LIBGCCJIT_SYMLINK) \ + $(LIBGCCJIT_SONAME_SYMLINK) \ $(LIBGCCJIT_LINKER_NAME_SYMLINK) \ $(FULL_DRIVER_NAME) @@ -301,9 +301,8 @@ jit.uninstall: # We just have to delete files specific to us. jit.mostlyclean: - -rm -f $(LIBGCCJIT_FILENAME) $(LIBGCCJIT_SYMLINK) + -rm -f $(LIBGCCJIT_FILENAME) $(LIBGCCJIT_SONAME_SYMLINK) -rm -f $(LIBGCCJIT_LINKER_NAME_SYMLINK) $(FULL_DRIVER_NAME) - -rm -f $(LIBGCCJIT_SONAME) -rm -f $(jit_OBJS) jit.clean: