From patchwork Sun Sep 10 15:40:22 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 812157 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=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-84424-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="uJDhhQgW"; 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 3xqwHn5g2xz9s7c for ; Mon, 11 Sep 2017 01:40:37 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=i1rSXRUhnkrmJMX7Q+YAPC1/+0kNf/zH4UQDYwiB2lURSjrrLlrpc KoV66wxkCD8+jl0Bo72+ahlLBnAZL5Se2qobe1IATETNePhBvZ1kAKa6jChaT/+l Ddi293kllKsoTpJkMjEMlBdCAktkfff9bDBb4ynunlNRWVebXd6Q0M= 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:from:to:cc:subject:date:message-id; s=default; bh=mJ9yNxWnHfcmUovoySiv0647kvM=; b=uJDhhQgWIz9ikXZywOYR7Qdzpt4W d4wYsh7+5u+/qvGmx4wsEvQ0VwPd4u3noNnDx3qfXWcemxl0rAigjSv1yngeXLUz bnyPNnjV6TOZEMQPFTl56m6u9i+gl3aPcentFnr0B7i+V458wEnVGnpmIL++Bnq+ BmMUmLGbSSfZClM= Received: (qmail 125379 invoked by alias); 10 Sep 2017 15:40:30 -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 125368 invoked by uid 89); 10 Sep 2017 15:40:30 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_NEUTRAL autolearn=ham version=3.3.2 spammy= X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault Subject: [commited] Fix $(error) use in Makefile Date: Sun, 10 Sep 2017 17:40:22 +0200 Message-Id: <20170910154022.31542-1-samuel.thibault@ens-lyon.org> * elf/rtld-Rules: Fix $(error) use. --- ChangeLog | 1 + elf/rtld-Rules | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a31824b372..7a2f865b7c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * sunrpc/tst-udp-timeout.c (test_udp_server): Increase timeout to 2.5 seconds. + * elf/rtld-Rules: Fix $(error) use. 2017-09-09 Mike FABIAN diff --git a/elf/rtld-Rules b/elf/rtld-Rules index 2c7b99828c..a1df9bf2ad 100644 --- a/elf/rtld-Rules +++ b/elf/rtld-Rules @@ -29,7 +29,7 @@ rtld-all: # When run from the elf/Makefile to build rtld-libc.a, $(subdir) is elf. ifneq ($(subdir),elf) ifndef rtld-modules -error rtld-modules not set +$(error rtld-modules not set) endif endif @@ -37,7 +37,7 @@ ifndef rtld-modules # Running to build rtld-libc.a, driving runs of $(rtld-subdir-make), below. ifndef rtld-subdirs -error This makefile is a subroutine of elf/Makefile not to be used directly +$(error This makefile is a subroutine of elf/Makefile not to be used directly) endif include ../Makeconfig