|
@@ -36,7 +36,7 @@ noconfig_targets:=menuconfig config oldconfig randconfig \
|
|
ifneq ($(BUILDROOT_LOCAL),)
|
|
ifneq ($(BUILDROOT_LOCAL),)
|
|
BR2_LOCAL:=$(BUILDROOT_LOCAL)
|
|
BR2_LOCAL:=$(BUILDROOT_LOCAL)
|
|
else
|
|
else
|
|
-BR2_LOCAL:=$(TOPDIR)/local
|
|
|
|
|
|
+BR2_LOCAL:=$(TOPDIR)local
|
|
endif
|
|
endif
|
|
|
|
|
|
# $(shell find . -name *_defconfig |sed 's/.*\///')
|
|
# $(shell find . -name *_defconfig |sed 's/.*\///')
|
|
@@ -57,6 +57,12 @@ BR2_DL_DIR:=$(BUILDROOT_DL_DIR)
|
|
endif
|
|
endif
|
|
LOCAL:=$(BR2_LOCAL)
|
|
LOCAL:=$(BR2_LOCAL)
|
|
|
|
|
|
|
|
+ifneq ($(BUILDROOT_HOST_GLIB),)
|
|
|
|
+HOST_GLIB:=$(BUILDROOT_HOST_GLIB)
|
|
|
|
+else
|
|
|
|
+HOST_GLIB:=$(BR2_HOST_GLIB)
|
|
|
|
+endif
|
|
|
|
+
|
|
# To put more focus on warnings, be less verbose as default
|
|
# To put more focus on warnings, be less verbose as default
|
|
# Use 'make V=1' to see the full commands
|
|
# Use 'make V=1' to see the full commands
|
|
ifdef V
|
|
ifdef V
|
|
@@ -511,4 +517,8 @@ help:
|
|
|
|
|
|
.PHONY: dummy subdirs release distclean clean config oldconfig \
|
|
.PHONY: dummy subdirs release distclean clean config oldconfig \
|
|
menuconfig tags check test depend defconfig help
|
|
menuconfig tags check test depend defconfig help
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+status:
|
|
|
|
+ @echo LOCAL=$(LOCAL)
|
|
|
|
+ @echo BR2_DL_DIR=$(BR2_DL_DIR)
|
|
|
|
+ @echo HOST_GLIB=$(HOST_GLIB)
|