[Armadeus-commitlog] armadeus branch, master, updated. armadeus-7.0-378-g4ec6ea24d
Brought to you by:
sszy
|
From: sszy <ss...@us...> - 2023-06-13 07:48:32
|
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 4ec6ea24dd6e83236ea5cbe41ba8512e16f7bf52 (commit)
from 89106400315a3d1cb60a0ddd1d47b17699c999b1 (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 4ec6ea24dd6e83236ea5cbe41ba8512e16f7bf52
Author: Erwan MATHIEU <er...@in...>
Date: Mon Jun 12 21:35:21 2023 +0200
Allow autoconf target to work with external buildroot layout
-----------------------------------------------------------------------
Summary of changes:
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index cf9c7d2a1..1c30b08d6 100644
--- a/Makefile
+++ b/Makefile
@@ -177,7 +177,7 @@ linux-clean: $(BUILDROOT_OUTPUT_DIR)/.configured
# for the one who doesn't want config menu:
%_autoconf: $(BUILDROOT_DIR)/.patched
- @if [ -e "$(BUILDROOT_DIR)/configs/$(patsubst %_autoconf,%,$@)_defconfig" ]; then \
+ @if [ -e "$(ARMADEUS_CONFIG_DIR)/$(patsubst %_autoconf,%,$@)_defconfig" ] || [ -e "$(ARMADEUS_CONFIG_DIR)/$(patsubst %_autoconf,%,$@)/$(patsubst %_autoconf,%,$@)_defconfig" ] || [ -e "$(BR2_EXTERNAL)/configs/$(patsubst %_autoconf,%,$@)_defconfig" ]; then \
rm -f $(BUILDROOT_CONFIG_DIR)/.config ; \
$(MAKE) -C $(BUILDROOT_DIR) $(patsubst %_autoconf,%,$@)_defconfig ; \
touch $(BUILDROOT_OUTPUT_DIR)/.configured ; \
hooks/post-receive
--
armadeus
|