From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f53.google.com (mail-wg0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id AC96569D4 for ; Tue, 4 Feb 2014 16:53:54 +0100 (CET) Received: by mail-wg0-f53.google.com with SMTP id y10so13130499wgg.20 for ; Tue, 04 Feb 2014 07:55:15 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=k8I6SvWY3J80a225ln19Y+Dexl+Ce1zCVUMm4x/2n0c=; b=eXHhAvXuc56UWIn6+3r5nyCLZO3hTWMnzlhJu4m6xoJsl1qLsfG9Ar8vnTZVyV4yHm 9hADftSSe9Fbr0L6uTW8ZS8/uu4xnsPDC5Vt7FPNKTdw+SMp5HQrhJ7/R1oOXxxzp3SP iFo6E2GscCKx+Uga4xB9GPCDs6zdfkTijovAICqj9JAFk3b4eRzxm97bcfVRCTxGb90H 91SHq0l4QBu2Vi860asZjS++iCR0+GsHo2mTIS1UBMcei/TqsgmjSS9AEyLgSKKOuGOs fehCcOayQAZNp4WLFqXBtPObJYrbrJr83YMex/jpAJd4cHF08v9yL4kQy0xJd/i0afM5 B8yg== X-Gm-Message-State: ALoCoQl4m249wF+aYrjcuyP1TYCDmk9QgSvUpv8xuEbP42Vnq5AUNH8ZIwM+lqE+8377TpqtZUPQ X-Received: by 10.194.6.8 with SMTP id w8mr29344206wjw.16.1391529315527; Tue, 04 Feb 2014 07:55:15 -0800 (PST) Received: from angus.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id q2sm53639203wjq.0.2014.02.04.07.55.13 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 04 Feb 2014 07:55:14 -0800 (PST) From: Thomas Monjalon To: dev@dpdk.org Date: Tue, 4 Feb 2014 16:54:29 +0100 Message-Id: <1391529271-24606-15-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1391529271-24606-1-git-send-email-thomas.monjalon@6wind.com> References: <1391529271-24606-1-git-send-email-thomas.monjalon@6wind.com> Subject: [dpdk-dev] [memnic PATCH 14/16] pmd: fix doc uninstalling X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Feb 2014 15:53:55 -0000 Signed-off-by: Thomas Monjalon --- pmd/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pmd/Makefile b/pmd/Makefile index 1e24a15..730b126 100644 --- a/pmd/Makefile +++ b/pmd/Makefile @@ -79,6 +79,8 @@ endif uninstall : - rm -f $(DESTDIR)$(libdir)/$(SOLIB) - rmdir -p $(DESTDIR)$(libdir) 2>&- + - rm -f $(DESTDIR)$(docdir)/$(DOC) + - rmdir -p $(DESTDIR)$(docdir) 2>&- help : @ echo 'rules:' -- 1.7.10.4