Merge pull request #564 from vpeter4/lto-fix

functions: fix missing ` in the strip_gold function
This commit is contained in:
CvH 2016-07-23 13:44:20 +02:00 committed by GitHub
commit 30fe64a3d2

View File

@ -223,7 +223,7 @@ strip_lto() {
strip_gold() { strip_gold() {
# strip out usage from GOLD linker # strip out usage from GOLD linker
LDFLAGS=`echo $LDFLAGS | sed -e "s|-fuse-ld=gold||g"` 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() { fix_module_depends() {