diff options
| author | Rasmus Villemoes <[email protected]> | 2024-05-15 09:36:11 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-05-21 16:09:36 -0600 |
| commit | 1bfce599dc68fac4285b0a4fbe247793fd82c156 (patch) | |
| tree | 61af91f8bfc4c72695e0f4040a2eca5732162610 | |
| parent | 1db973b65f9c1efbfa5370a95d6330f29557b3ab (diff) | |
Makefile: refactor ubootrelease target
Instead of duplicating the contents of the filechk_uboot.release
variable, use it directly.
This is preparation for the next patch which will modify
filechk_uboot.release, and reflects what the linux kernel does
nowadays:
kernelrelease:
@$(filechk_kernel.release)
Signed-off-by: Rasmus Villemoes <[email protected]>
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2426,7 +2426,7 @@ checkstack: $(PERL) $(src)/scripts/checkstack.pl $(ARCH) ubootrelease: - @echo "$(UBOOTVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))" + @$(filechk_uboot.release) ubootversion: @echo $(UBOOTVERSION) |
