From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:4864:20::12c; helo=mail-it1-x12c.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-it1-x12c.google.com (mail-it1-x12c.google.com [IPv6:2607:f8b0:4864:20::12c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 1242C21179247 for ; Mon, 15 Oct 2018 20:11:13 -0700 (PDT) Received: by mail-it1-x12c.google.com with SMTP id e74-v6so30467111ita.2 for ; Mon, 15 Oct 2018 20:11:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=utBj16t9hEgIFMzSXFCGGG70FnBrk84OLqXhE5lDzDE=; b=NQ4u5N946rb9J8y0TurVqQXyN8eehHuHt6QxG+gObS9joEj+xWxXLmwKe+QYPydq0V BtT6JiDdWCpWzfOK5VH5tgkAnZkcxhL9Df8Hg3onluTQx8TFjOHLnNlA+CBF99E4idLB N2nuJSGxZUP+ehXgzifOvd5Tgwe3G1GbEjW28= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=utBj16t9hEgIFMzSXFCGGG70FnBrk84OLqXhE5lDzDE=; b=gN2QtnvHgFjH33djJKH7YM+Xf5t0/91uc9n78RaCt8UZ8Lpol2Syo94mggJ9AZFqGJ UsiEGlqtJ/hqjiO4jFGYrXPQvHEH56Ms86ui/m8REsEpp3c5/YmWekPLlxiV6BJ39Znm /NkTHXCGaJoDCSjVDwIDxmnMWaBtgreQ3pTrd17lc+60B9In601ZhLO1zRzSJb0I05Mz 6+d9ZmwCA92fcacjD/Z1EX9Erpb9GuymiDRLShecEPUWQOQN6s6CYvjdFjKMaCuMr3M9 CNNp0iiu87sEZ1FcEtxa7t+XqUQPFp0RmHqLk4BB7OB7hnMoXDiqFYN/laBcA9iKFFlB SWxg== X-Gm-Message-State: ABuFfojltIYsAg/tzEVz9aFAxgEH2EdygU8sQ+UI9XXvkNXf5kB+HA7c +PuMDcxCkAFXCbZCNGV4jvbw545+UGM1PWvqaXIShg== X-Google-Smtp-Source: ACcGV615r21gtmoRQwpwZrh/rv4m7LS4OETOIcYzMGzz0b+HvSmfEHxQQfikLwyp5MosvUSKWDl4W9FLbEGAHTl2sQ8= X-Received: by 2002:a24:e08f:: with SMTP id c137-v6mr15245832ith.71.1539659473006; Mon, 15 Oct 2018 20:11:13 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a6b:5910:0:0:0:0:0 with HTTP; Mon, 15 Oct 2018 20:11:12 -0700 (PDT) In-Reply-To: References: <4A89E2EF3DFEDB4C8BFDE51014F606A14E33A7E6@SHSMSX104.ccr.corp.intel.com> From: Ard Biesheuvel Date: Tue, 16 Oct 2018 11:11:12 +0800 Message-ID: To: Pankaj Bansal Cc: "Gao, Liming" , "Zhu, Yonghong" , Leif Lindholm , Michael D Kinney , "edk2-devel@lists.01.org" , Udit Kumar , Varun Sethi Subject: Re: PACKAGES_PATH in !include path in Dsc files X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2018 03:11:14 -0000 Content-Type: text/plain; charset="UTF-8" On 16 October 2018 at 10:40, Pankaj Bansal wrote: > +edk2-platforms maintainers in To list > > > > Thank you Liming for replying. > > > > Our entire code is in edk2-platforms > (https://github.com/tianocore/edk2-platforms) which is denoted by > PACKAGES_PATH. > > The PACKAGES_PATH directory can be anywhere in WORKSPACE depending on the > sync directory defined by user. > > i.e. it can be $(WORKSPACE)/edk2-platforms or $(WORKSPACE)/ name that user can define during git sync> > > As our dsc files are relative to PACKAGES_PATH, I want to specify their path > in dsc file like this: > > > > !include $(PACKAGES_PATH)/Silicon/NXP/.dsc > > > > Using $(WORKSPACE), I cannot specify above path, as it can be at place other > than $(WORKSPACE)/edk2-platforms > But why do you need to !include things in the first place? Can you explain how you are trying to organize the files, and which file includes which?