Skip to content
Snippets Groups Projects
Unverified Commit 453fea19 authored by Rong Zhang's avatar Rong Zhang Committed by GitHub
Browse files

Merge pull request #3034 from cornelius-keller/library_fix

fix missing libraries on newer coreos versions
parents 91721509 4b5cb118
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,11 @@ mv -n pypy-$PYPY_VERSION-linux64 pypy ...@@ -18,7 +18,11 @@ mv -n pypy-$PYPY_VERSION-linux64 pypy
## library fixup ## library fixup
mkdir -p pypy/lib mkdir -p pypy/lib
if [ -f /lib64/libncurses.so.5.9 ]; then
ln -snf /lib64/libncurses.so.5.9 $BINDIR/pypy/lib/libtinfo.so.5 ln -snf /lib64/libncurses.so.5.9 $BINDIR/pypy/lib/libtinfo.so.5
elif [ -f /lib64/libncurses.so.6.1 ]; then
ln -snf /lib64/libncurses.so.6.1 $BINDIR/pypy/lib/libtinfo.so.5
fi
cat > $BINDIR/python <<EOF cat > $BINDIR/python <<EOF
#!/bin/bash #!/bin/bash
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment