[Armadeus-commitlog] armadeus branch, master, updated. armadeus-7.0-193-g126b53b36
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2020-06-02 15:47:46
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 126b53b361a402793235ab6b48c5d184b49f54fe (commit)
from 4a67126802ee8ffecb12e370b3d29626150c28a1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 126b53b361a402793235ab6b48c5d184b49f54fe
Author: Sébastien Szymanski <seb...@ar...>
Date: Tue Jun 2 17:45:43 2020 +0200
[BSP] Makefile: introduce BUILDROOT_MINOR_VERSION
-----------------------------------------------------------------------
Summary of changes:
Makefile | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 608df4bfa..6e4d8896a 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,12 @@ export ARMADEUS_TOPDIR
#--- User configurable stuff:
BUILDROOT_MAJOR_VERSION ?= 2019.02
-BUILDROOT_VERSION ?= $(BUILDROOT_MAJOR_VERSION).11
+BUILDROOT_MINOR_VERSION ?= 11
+ifneq ($(strip $(BUILDROOT_MINOR_VERSION)),)
+BUILDROOT_VERSION := $(BUILDROOT_MAJOR_VERSION).$(BUILDROOT_MINOR_VERSION)
+else
+BUILDROOT_VERSION := $(BUILDROOT_MAJOR_VERSION)
+endif
include ./Makefile.in
BUILDROOT_SITE:=https://buildroot.org/downloads
BUILDROOT_PATCH_DIR:=$(ARMADEUS_TOPDIR)/patches/buildroot/$(BUILDROOT_MAJOR_VERSION)
hooks/post-receive
--
armadeus
|