Skip to content

Commit 076fd25

Browse files
Thierry StrudelmikeNG
authored andcommitted
techpack: 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 <[email protected]>
1 parent fe340e1 commit 076fd25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

techpack/audio/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# auto-detect subdirs
22
ifeq ($(CONFIG_ARCH_SDM845), y)
33
include $(srctree)/techpack/audio/config/sdm845auto.conf
4-
export
4+
export $(shell sed 's/=.*//' $(srctree)/techpack/audio/config/sdm845auto.conf)
55
endif
66
ifeq ($(CONFIG_ARCH_SDM670), y)
77
include $(srctree)/techpack/audio/config/sdm670auto.conf
8-
export
8+
export $(shell sed 's/=.*//' $(srctree)/techpack/audio/config/sdm670auto.conf)
99
endif
1010
ifeq ($(CONFIG_ARCH_SDXPOORWILLS), y)
1111
include $(srctree)/techpack/audio/config/sdxpoorwillsauto.conf
12-
export
12+
export $(shell sed 's/=.*//' $(srctree)/techpack/audio/config/sdxpoorwillsauto.conf)
1313
endif
1414

1515
# Use USERINCLUDE when you must reference the UAPI directories only.

0 commit comments

Comments
 (0)