binutils: build strings for target (needed by rpi-eeprom-update)

This commit is contained in:
MilhouseVH 2019-09-03 19:05:15 +01:00
parent 276b989054
commit bdeb0ccd4f

View File

@ -67,6 +67,7 @@ make_target() {
make -C libiberty
make -C bfd
make -C opcodes
make -C binutils strings
}
makeinstall_target() {
@ -74,4 +75,7 @@ makeinstall_target() {
cp libiberty/libiberty.a $SYSROOT_PREFIX/usr/lib
make DESTDIR="$SYSROOT_PREFIX" -C bfd install
make DESTDIR="$SYSROOT_PREFIX" -C opcodes install
mkdir -p ${INSTALL}/usr/bin
cp binutils/strings ${INSTALL}/usr/bin
}