Browse Source
Merge pull request #3034 from cornelius-keller/library_fix
fix missing libraries on newer coreos versions
pull/3051/merge
Rong Zhang
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
1 deletions
-
roles/bootstrap-os/files/bootstrap.sh
|
|
@ -18,7 +18,11 @@ mv -n pypy-$PYPY_VERSION-linux64 pypy |
|
|
|
|
|
|
|
## library fixup |
|
|
|
mkdir -p pypy/lib |
|
|
|
ln -snf /lib64/libncurses.so.5.9 $BINDIR/pypy/lib/libtinfo.so.5 |
|
|
|
if [ -f /lib64/libncurses.so.5.9 ]; then |
|
|
|
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 |
|
|
|
#!/bin/bash |
|
|
|