1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-30 22:39:48 +03:00

add menuconfig option to enable log files during build process

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27403 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
blogic 2011-07-03 17:37:31 +00:00
parent a79b0f5a1c
commit 913081d31b
2 changed files with 9 additions and 0 deletions

View File

@ -425,6 +425,11 @@ menuconfig DEVEL
In this instance, the --refererence option of git clone will
be used thus creating a quick local clone of your repo.
config BUILD_LOG
bool "Enable log files during build process" if DEVEL
help
If enabled log files will be written to the ./log directory
menuconfig TARGET_OPTIONS
bool "Target Options" if DEVEL

View File

@ -239,6 +239,10 @@ else
TAR_OPTIONS:=-xf -
endif
ifeq ($(CONFIG_BUILD_LOG),y)
BUILD_LOG:=1
endif
define shvar
V_$(subst .,_,$(subst -,_,$(subst /,_,$(1))))
endef