Skip to content
Snippets Groups Projects
Commit 4551f2bf authored by John Crispin's avatar John Crispin
Browse files

add menuconfig option to enable log files during build process

SVN-Revision: 27403
parent 96cc4174
No related branches found
No related tags found
No related merge requests found
...@@ -425,6 +425,11 @@ menuconfig DEVEL ...@@ -425,6 +425,11 @@ menuconfig DEVEL
In this instance, the --refererence option of git clone will In this instance, the --refererence option of git clone will
be used thus creating a quick local clone of your repo. 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 menuconfig TARGET_OPTIONS
bool "Target Options" if DEVEL bool "Target Options" if DEVEL
......
...@@ -239,6 +239,10 @@ else ...@@ -239,6 +239,10 @@ else
TAR_OPTIONS:=-xf - TAR_OPTIONS:=-xf -
endif endif
ifeq ($(CONFIG_BUILD_LOG),y)
BUILD_LOG:=1
endif
define shvar define shvar
V_$(subst .,_,$(subst -,_,$(subst /,_,$(1)))) V_$(subst .,_,$(subst -,_,$(subst /,_,$(1))))
endef endef
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment