Skip to content
Snippets Groups Projects
Commit d63f6d1b authored by Mike Frysinger's avatar Mike Frysinger Committed by Michal Marek
Browse files

initramfs: Fix build break on symbol-prefixed archs

parent ffe8018c
No related branches found
No related tags found
No related merge requests found
...@@ -128,7 +128,9 @@ _c_flags += $(if $(patsubst n%,, \ ...@@ -128,7 +128,9 @@ _c_flags += $(if $(patsubst n%,, \
endif endif
ifdef CONFIG_SYMBOL_PREFIX ifdef CONFIG_SYMBOL_PREFIX
_cpp_flags += -DSYMBOL_PREFIX=$(patsubst "%",%,$(CONFIG_SYMBOL_PREFIX)) _sym_flags = -DSYMBOL_PREFIX=$(patsubst "%",%,$(CONFIG_SYMBOL_PREFIX))
_cpp_flags += $(_sym_flags)
_a_flags += $(_sym_flags)
endif endif
......
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