build-style gnu-makefile: pass $OBJCOPY to make

This commit is contained in:
Jürgen Buchmüller 2020-11-07 16:13:13 +01:00
parent f4c44f74ad
commit bba453427e
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ do_build() {
if [ -z "$make_use_env" ]; then
${make_cmd} \
CC="$CC" CXX="$CXX" LD="$LD" AR="$AR" RANLIB="$RANLIB" \
CPP="$CPP" AS="$AS" OBJDUMP="$OBJDUMP" \
CPP="$CPP" AS="$AS" OBJCOPY="$OBJCOPY" OBJDUMP="$OBJDUMP" \
CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
${makejobs} ${make_build_args} ${make_build_target}
else