functions: fix missing ` in the strip_gold function

This commit is contained in:
Peter Vicman 2016-07-23 13:27:34 +02:00
parent a3564931ad
commit c7f57815a7

View File

@ -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() {