Package: binutils-source Version: 2.32.51.20190727-1 in debian/rules:
stamps/install: tag always run
$(call strip_package, $(p_lib), $(d_lib))
and
$(call strip_package, $(p_nat), $(d_nat))
while these packages may not exist for cross-toolchain-base,
cross-toolchain-base-mipsen, and binutils-mipsen.
So, we can change them to
ifeq ($(with_native),yes)
$(call strip_package, $(p_lib), $(d_lib))
endif
ifeq ($(with_native),yes)
$(call strip_package, $(p_nat), $(d_nat))
endif

