From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
To: Bagas Sanjaya <bagasdotme@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: [RFC PATCH] Makefile: add deprecation message for strip target
Date: Tue, 23 Nov 2021 14:00:43 +0100 [thread overview]
Message-ID: <211123.86a6hvuikj.gmgdl@evledraar.gmail.com> (raw)
In-Reply-To: <20211123122934.639428-1-bagasdotme@gmail.com>
On Tue, Nov 23 2021, Bagas Sanjaya wrote:
> Now that $INSTALL_STRIP variable can be defined since 3231f41009 (make:
> add INSTALL_STRIP option variable, 2021-09-05), deprecate 'strip' target
> to encourage users to move to $INSTALL_STRIP. The target will eventually
> be removed in Git 2.35+1.
>
> Only deprecation message is printed.
>
> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
> ---
> Makefile | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/Makefile b/Makefile
> index 12be39ac49..ee83860f7d 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -2159,6 +2159,8 @@ please_set_SHELL_PATH_to_a_more_modern_shell:
> shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
>
> strip: $(PROGRAMS) git$X
> + @echo "The 'strip' target is deprecated, define INSTALL_STRIP if you want to"
> + @echo "install Git with stripped binaries."
> $(STRIP) $(STRIP_OPTS) $^
>
> ### Flags affecting all rules
>
> base-commit: cd3e606211bb1cf8bc57f7d76bab98cc17a150bc
This is a better way to do this:
diff --git a/Makefile b/Makefile
index 12be39ac497..fd4736dff2f 100644
--- a/Makefile
+++ b/Makefile
@@ -2159,6 +2159,8 @@ please_set_SHELL_PATH_to_a_more_modern_shell:
shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
strip: $(PROGRAMS) git$X
+ $(warning The 'strip' target is deprecated, define INSTALL_STRIP if you want to \
+install stripped binaries)
$(STRIP) $(STRIP_OPTS) $^
### Flags affecting all rules
I.e. GNU make has a built-in way to do this which emits the line number.
The message also needs to be reworded, now it's telling me "do xyz to
..." do what I just did successfully? It should say something like
you just did X, but doing that via Y will soon be deprecated, do Z instead
to accomplish X"
See also:
git log -p -G'\$\((warning|error)' -- Makefile
For some recent-ish ways of doing phase-in deprecation.
Personally I think just starting with $(error) would be fine here. If
someone needs to adjust their build system anyway they can just adjust
it the first time around, it's not like a missing feature in git itself
where the carpet is rudely swept from under you. You'll still be able to
build, you just need to tweak your recipe.
The real value of $(warning) (or the same with @echo) is IMO something
like 6cdccfce1e0 (i18n: make GETTEXT_POISON a runtime option,
2018-11-08), i.e. to give someone a hint that something works
differently now (although I'd probably just make that $(error) if I was
doing it now, with the same rationale).
prev parent reply other threads:[~2021-11-23 13:07 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-23 12:29 [RFC PATCH] Makefile: add deprecation message for strip target Bagas Sanjaya
2021-11-23 13:00 ` Ævar Arnfjörð Bjarmason [this message]
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=211123.86a6hvuikj.gmgdl@evledraar.gmail.com \
--to=avarab@gmail.com \
--cc=bagasdotme@gmail.com \
--cc=git@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox