From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 5F443B0A8 for ; Fri, 16 May 2014 16:32:29 +0200 (CEST) Received: by mail-wg0-f50.google.com with SMTP id x12so4950157wgg.33 for ; Fri, 16 May 2014 07:32:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=iz7EQaECkHcuOxxVjePxIQs16b4SUUsCU04GMvyFLPU=; b=Y1h4DuSkspMWXXzA14sDYdXzW7uuFEIuDE+117RHce5AUxU81n1Xk4/8gREobKJuMW EqxnHXE1LUekm9LTu3ePOEDjBkBIStZn+SX8UflxQ63yyTvxgkJuyS7je0twy+vPtAcd S5mnjBtft9GvbDg4uZ9Tf1wPbUP3WnNUasWhucJMvsn4/H8BpPIL8bkdlLn3j4khgCfQ s9jpKppQmOtVw3PoursJdcpyJr982CyK9tG6sClCyJDi1uX13LpcD0l7x7OFg+cKQ3B2 YRpXbVMIZUVdNBQ4g+xR3yTBErS+G3tuSeVLvdsQkJwuIy3JRUpbLUCV/n1RXlVs00ky Q2gQ== X-Gm-Message-State: ALoCoQkAgO7UERdlIrEwAaz/nynRIJDS5mSYlt8U2xVTF0j398l7Sd6JuE6xBSgWgpxk+L4GTIL6 X-Received: by 10.180.106.194 with SMTP id gw2mr14077347wib.47.1400250757363; Fri, 16 May 2014 07:32:37 -0700 (PDT) Received: from xps13.localnet (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id b1sm2120128wjb.37.2014.05.16.07.32.35 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 16 May 2014 07:32:36 -0700 (PDT) From: Thomas Monjalon To: David Marchand Date: Fri, 16 May 2014 16:32:34 +0200 Message-ID: <1654095.V3XWpuZgTo@xps13> Organization: 6WIND User-Agent: KMail/4.13 (Linux/3.14.4-1-ARCH; KDE/4.13.0; x86_64; ; ) In-Reply-To: <1399642261-19763-1-git-send-email-david.marchand@6wind.com> References: <1399642261-19763-1-git-send-email-david.marchand@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] mk: add missing scripts directory in install directory 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, 16 May 2014 14:32:29 -0000 2014-05-09 15:31, David Marchand: > Trying to install headers for an external library using DPDK exported > makefile rte.extshared.mk results in following error : > > $ cd dpdk > $ make install DESTDIR=/home/marchand/myapp/staging/plop > T=x86_64-default-linuxapp-gcc $ cd ~/myapp > $ make RTE_SDK=/home/marchand/myapp/staging/plop > RTE_TARGET=x86_64-default-linuxapp-gcc CC plop.o > LD plop.so > SYMLINK-FILE include/plop.h > /bin/sh: > /home/marchand/myapp/staging/plop/scripts/relpath.sh: No such file or > directory ln: `/home/marchand/myapp/build/include' and `./include' are the > same file make[1]: *** [/home/marchand/myapp/build/include/plop.h] Error 1 > make: *** [all] Error 2 > > This comes from the fact that DPDK only installs its mk/ directory while > some makefiles require the scripts/ directory content as well. > > So install missing files from scripts/. > > Signed-off-by: David Marchand Acked-by: Thomas Monjalon Applied for version 1.7.0. -- Thomas