techpack: audio: makefile: do not export all the variables
This patch fixes an issue with all the functions defined in scripts/Makefile.lib gets called everytime when this makefile is included thus causing the build to slow down. Bug: 118818737 Change-Id: I4929e64d53a0bc865b12a27cce37520be52c9744 Signed-off-by: Thierry Strudel <tstrudel@google.com> Signed-off-by: starlight5234 <starlight5234@protonmail.ch>
This commit is contained in:
parent
3fa5755893
commit
51ec5ec34a
1 changed files with 1 additions and 3 deletions
|
@ -1,15 +1,12 @@
|
|||
# auto-detect subdirs
|
||||
ifeq ($(CONFIG_ARCH_SDXPOORWILLS), y)
|
||||
include $(srctree)/techpack/audio/config/sdxpoorwillsauto.conf
|
||||
export
|
||||
endif
|
||||
ifeq ($(CONFIG_ARCH_SM8150), y)
|
||||
include $(srctree)/techpack/audio/config/sm8150auto.conf
|
||||
export
|
||||
endif
|
||||
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
||||
include $(srctree)/techpack/audio/config/sm8150auto.conf
|
||||
export
|
||||
endif
|
||||
ifeq ($(CONFIG_ARCH_KONA), y)
|
||||
include $(srctree)/techpack/audio/config/konaauto.conf
|
||||
|
@ -19,6 +16,7 @@ include $(srctree)/techpack/audio/config/sdm660auto.conf
|
|||
endif
|
||||
ifeq ($(CONFIG_ARCH_BENGAL), y)
|
||||
include $(srctree)/techpack/audio/config/bengalauto.conf
|
||||
export $(shell sed 's/=.*//' $(srctree)/techpack/audio/config/bengalauto.conf)
|
||||
endif
|
||||
|
||||
# Use USERINCLUDE when you must reference the UAPI directories only.
|
||||
|
|
Loading…
Reference in a new issue