Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -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