From patchwork Tue Jun 23 10:06:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?C=C3=A9dric_Le_Goater?= X-Patchwork-Id: 487564 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 494A21401AD for ; Tue, 23 Jun 2015 20:05:40 +1000 (AEST) Received: from ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 23D611A0F74 for ; Tue, 23 Jun 2015 20:05:40 +1000 (AEST) X-Original-To: skiboot@lists.ozlabs.org Delivered-To: skiboot@lists.ozlabs.org Received: from e06smtp11.uk.ibm.com (e06smtp11.uk.ibm.com [195.75.94.107]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 2BD6D1A0018 for ; Tue, 23 Jun 2015 20:05:34 +1000 (AEST) Received: from /spool/local by e06smtp11.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 23 Jun 2015 11:05:30 +0100 Received: from d06dlp02.portsmouth.uk.ibm.com (9.149.20.14) by e06smtp11.uk.ibm.com (192.168.101.141) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Tue, 23 Jun 2015 11:05:28 +0100 X-Helo: d06dlp02.portsmouth.uk.ibm.com X-MailFrom: clg@fr.ibm.com X-RcptTo: skiboot@lists.ozlabs.org Received: from b06cxnps3074.portsmouth.uk.ibm.com (d06relay09.portsmouth.uk.ibm.com [9.149.109.194]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id CB2282190066 for ; Tue, 23 Jun 2015 11:05:05 +0100 (BST) Received: from d06av03.portsmouth.uk.ibm.com (d06av03.portsmouth.uk.ibm.com [9.149.37.213]) by b06cxnps3074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t5NA5Rww26083440 for ; Tue, 23 Jun 2015 10:05:27 GMT Received: from d06av03.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av03.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t5NA5PRT015331 for ; Tue, 23 Jun 2015 04:05:26 -0600 Received: from hermes.kaod.org (sig-9-81-111-205.evts.de.ibm.com [9.81.111.205]) by d06av03.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id t5NA5O1H015292; Tue, 23 Jun 2015 04:05:24 -0600 From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= To: skiboot@lists.ozlabs.org Date: Tue, 23 Jun 2015 12:06:00 +0200 Message-Id: <1435053960-22142-1-git-send-email-clg@fr.ibm.com> X-Mailer: git-send-email 1.7.10.4 MIME-Version: 1.0 X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15062310-0041-0000-0000-000004DADF61 Subject: [Skiboot] [PATCH] external/gard: change gard manual page filename X-BeenThere: skiboot@lists.ozlabs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Mailing list for skiboot development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Skiboot" This patch fixes : commit 6c458a036949 ("external/gard: Install gard manual page") which did not take into account the changes from : commit 2e2fb4dfff5c ("Renaming to opal-gard and minus escaping") Signed-off-by: Cédric Le Goater --- external/gard/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: skiboot.git/external/gard/Makefile =================================================================== --- skiboot.git.orig/external/gard/Makefile +++ skiboot.git/external/gard/Makefile @@ -28,7 +28,7 @@ $(EXE): $(OBJS) install: all install -D gard $(DESTDIR)$(sbindir)/opal-gard - install -D -m 0644 gard.1 $(DESTDIR)$(mandir)/man1/opal-gard.1 + install -D -m 0644 opal-gard.1 $(DESTDIR)$(mandir)/man1/opal-gard.1 clean: rm -f $(OBJS) $(EXE) *.d