From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f180.google.com (mail-we0-f180.google.com [74.125.82.180]) by dpdk.org (Postfix) with ESMTP id 2C76D68C0 for ; Fri, 24 Jan 2014 17:17:43 +0100 (CET) Received: by mail-we0-f180.google.com with SMTP id q59so2913152wes.11 for ; Fri, 24 Jan 2014 08:19:00 -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:in-reply-to:references; bh=VtAItaNZtDsRSZziTp+ERgJ+DPX7aZ7edbN91u6UBUM=; b=N0rmqxOgt2881XYqQLipGJ6Zlx6ADw/CjKOFIVMo7EPUxay7KED64oSrVkWjKlQ0Pz 3fLHEoRVNKRe5zPnyBBMaCL9uJbMo+Q+VD4X/9jpG1yyFn7dQnPQHJWzj+nPUOMVM/TY Cwq0lSWWu1HKVHPHJX+3xwnDFtdrmm2NsimZA0qyCVxhmjrWfcvza4tmwdGh7QSESg+c u7xg20ubodYgtLDru5Gx2/3Hvb/SGzo3Oq4y/LeuCvQkyiT1/ut+9EUoxON0rXZXKq3h KX4SOrMBPkfcLTR6z1v28FH8mrZnoSEB6avhQJIpSjWSt6CZSac7TOI+8gyvVM490nuR Km5A== X-Gm-Message-State: ALoCoQlG7k7OaK4IBOQd2WmmgKlvHU5YWNzKpBc0XszOabejXns1VoC0DuxJwo9YxNaVhpH9foU+ X-Received: by 10.194.77.7 with SMTP id o7mr11381678wjw.35.1390580340369; Fri, 24 Jan 2014 08:19:00 -0800 (PST) Received: from angus.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id n15sm6908198wij.3.2014.01.24.08.18.59 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 24 Jan 2014 08:18:59 -0800 (PST) From: Thomas Monjalon To: dev@dpdk.org Date: Fri, 24 Jan 2014 17:18:30 +0100 Message-Id: <924a3a6605ea8909ad16a6d55a6fa179b516b319.1390580092.git.thomas.monjalon@6wind.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [memnic PATCH 1/3] pmd: remove symlink 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: Fri, 24 Jan 2014 16:17:43 -0000 No need to have a symbolic link to a common file when it can be simply included. Signed-off-by: Thomas Monjalon --- pmd/Makefile | 2 +- pmd/memnic.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 120000 pmd/memnic.h diff --git a/pmd/Makefile b/pmd/Makefile index a96e125..7f96af1 100644 --- a/pmd/Makefile +++ b/pmd/Makefile @@ -59,7 +59,7 @@ ifeq '$(RTE_INCLUDE)' '' endif $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) \ -I$(RTE_INCLUDE) -include $(RTE_CONFIG) \ - -o $@ $< + -I$S/../common -o $@ $< install : $(DESTDIR)$(libdir)/$(SOLIB) install -D -m 644 $S/README.rst $(DESTDIR)$(docdir)/README.rst diff --git a/pmd/memnic.h b/pmd/memnic.h deleted file mode 120000 index 5303ad4..0000000 --- a/pmd/memnic.h +++ /dev/null @@ -1 +0,0 @@ -../common/memnic.h \ No newline at end of file -- 1.7.10.4