Skip to content

Commit

Permalink
Merge pull request #502 from mariux64/update-glibc
Browse files Browse the repository at this point in the history
glibc: Update version from 2.25 to 2.27
  • Loading branch information
donald authored Feb 8, 2018
2 parents b771e0d + fe5b143 commit b0c4b0a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions glibc.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/env beesh

# BEE_VERSION glibc-2.25-1
# BEE_VERSION glibc-2.27-0

SRCURL[0]="https://ftp.gnu.org/gnu/glibc/glibc-${PKGVERSION}.tar.bz2"

Expand Down Expand Up @@ -50,6 +50,7 @@ mee_configure() {
--disable-profile \
--enable-add-ons \
--enable-obsolete-rpc \
--enable-obsolete-nsl \
--enable-kernel=4.4.34
}

Expand Down Expand Up @@ -114,8 +115,10 @@ mee_install_post() {
cd -
fi

# our /lib64 is a symlink to /lib now, so we don't need /lib64/ld-linux-x86-64.so.2 -> ../lib/ld-2.25.so

rm $D/lib64/ld-linux-x86-64.so.2
# "make install" created (e.g.) /lib64/ld-linux-x86-64.so.2 -> ../lib/ld-2.26.so
# we have /lib64 -> /lib , so remove the lib64 directory and create a new link
#
rm $D/lib64/ld-linux-x86-64.so.${PKGVERSION[1]}
rmdir $D/lib64
ln -s ld-$PKGVERSION.so $D/lib/ld-linux-x86-64.so.${PKGVERSION[1]}
}

0 comments on commit b0c4b0a

Please sign in to comment.