From: Michal Marek <mmarek@suse.cz>
To: Boaz Harrosh <boaz@plexistor.com>,
Stable Tree <stable@vger.kernel.org>,
linux-kernel <linux-kernel@vger.kernel.org>
Cc: David Howells <dhowells@redhat.com>
Subject: Re: [PATCH] Makefile: One last adjustment to relative paths
Date: Mon, 25 Aug 2014 15:40:55 +0200 [thread overview]
Message-ID: <53FB3CE7.9060609@suse.cz> (raw)
In-Reply-To: <53FAF8BF.3010008@plexistor.com>
On 2014-08-25 10:50, Boaz Harrosh wrote:
> the simple fix is to have "Entering directory" print full path.
>
> [Stable needed for 3.16]
> CC: Stable Tree <stable@vger.kernel.org>
> Signed-off-by: Boaz Harrosh <boaz@plexistor.com>
> ---
> Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index 6b27741..973c48f 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -178,7 +178,7 @@ $(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
> quiet_echodir := @echo
> silent_echodir := @:
> sub-make: FORCE
> - $($(quiet)echodir) "make[1]: Entering directory \`$(KBUILD_OUTPUT)'"
> + $($(quiet)echodir) "make[1]: Entering directory \`$(CURDIR)/$(KBUILD_OUTPUT)'"
KBUILD_OUTPUT is converted to an absolute path a few lines earlier:
KBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) \
&& /bin/pwd)
So I don't understand why are you getting a message with a relative
path. I get an absolute path as expected here:
$ mkdir aaa
$ make O=aaa defconfig
make[1]: Entering directory `/home/mmarek/linux-2.6/aaa'
...
Michal
next prev parent reply other threads:[~2014-08-25 13:41 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-25 8:50 [PATCH] Makefile: One last adjustment to relative paths Boaz Harrosh
2014-08-25 13:40 ` Michal Marek [this message]
2014-08-26 14:24 ` Boaz Harrosh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53FB3CE7.9060609@suse.cz \
--to=mmarek@suse.cz \
--cc=boaz@plexistor.com \
--cc=dhowells@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.