From c7f57815a70b5d627708e54745bcd2f9f5ab99d0 Mon Sep 17 00:00:00 2001 From: Peter Vicman Date: Sat, 23 Jul 2016 13:27:34 +0200 Subject: [PATCH] functions: fix missing ` in the strip_gold function --- config/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/functions b/config/functions index 6593d8f19c..c02476a68c 100644 --- a/config/functions +++ b/config/functions @@ -223,7 +223,7 @@ strip_lto() { strip_gold() { # strip out usage from GOLD linker LDFLAGS=`echo $LDFLAGS | sed -e "s|-fuse-ld=gold||g"` - TARGET_LDFLAGS=echo $TARGET_LDFLAGS | sed -e "s|-fuse-ld=gold||g"` + TARGET_LDFLAGS=`echo $TARGET_LDFLAGS | sed -e "s|-fuse-ld=gold||g"` } fix_module_depends() {