Skip to content
Permalink
update-mpfr-402
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 23 lines (17 sloc) 425 Bytes
#!/bin/env beesh
# BEE_VERSION binutils-2.32-0
SRCURL="https://ftp.gnu.org/gnu/binutils/binutils-${PKGVERSION}.tar.xz"
#set -x
mee_patch_post() {
rm -fv etc/standards.info
sed -i.bak '/^INFO/s/standards.info //' etc/Makefile.in
}
mee_configure() {
bee_configure --enable-shared
}
mee_check() {
make check 2>&1 | tee check.log
}
mee_install_post() {
cp -v ${S}/include/libiberty.h ${D}/usr/include
}