build_style/gnu-makefile: set STRIP=true in do_build() too.

This commit is contained in:
Juan RP 2015-03-04 19:43:46 +01:00
parent 766bcf7ac1
commit 40efca7875
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ do_build() {
${make_cmd} \
CC="$CC" CXX="$CXX" LD="$LD" AR="$AR" RANLIB="$RANLIB" \
CPP="$CPP" AS="$AS" OBJDUMP="$OBJDUMP" STRIP=":" \
CPP="$CPP" AS="$AS" OBJDUMP="$OBJDUMP" STRIP="true" \
${makejobs} ${make_build_args} ${make_build_target}
}