Skip to content
This repository was archived by the owner on Jul 18, 2019. It is now read-only.

Commit d63f6d1

Browse files
Mike Frysingermichal42
Mike Frysinger
authored andcommitted
initramfs: Fix build break on symbol-prefixed archs
Signed-off-by: Mike Frysinger <[email protected]> Signed-off-by: Michal Marek <[email protected]>
1 parent ffe8018 commit d63f6d1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/Makefile.lib

+3-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ _c_flags += $(if $(patsubst n%,, \
128128
endif
129129

130130
ifdef CONFIG_SYMBOL_PREFIX
131-
_cpp_flags += -DSYMBOL_PREFIX=$(patsubst "%",%,$(CONFIG_SYMBOL_PREFIX))
131+
_sym_flags = -DSYMBOL_PREFIX=$(patsubst "%",%,$(CONFIG_SYMBOL_PREFIX))
132+
_cpp_flags += $(_sym_flags)
133+
_a_flags += $(_sym_flags)
132134
endif
133135

134136

0 commit comments

Comments
 (0)