summaryrefslogtreecommitdiffhomepage
path: root/vars/python2_host.vars
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-10 20:07:10 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2018-12-10 20:07:10 +0000
commit351559023fc480da01c3393aa2620bfba169483a (patch)
tree86991261299d198dee6f87377c0c9abce2dd3d9b /vars/python2_host.vars
parente05e4954eea51e2737f95d946b70b0d3afcb2fc4 (diff)
downloadmidipix_build-351559023fc480da01c3393aa2620bfba169483a.tar.bz2
midipix_build-351559023fc480da01c3393aa2620bfba169483a.tar.xz
remove Python2.7.wrapper (sbpython2 links libpython2.7.so with -rpath).
Signed-off-by: Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
Diffstat (limited to 'vars/python2_host.vars')
-rw-r--r--vars/python2_host.vars11
1 files changed, 0 insertions, 11 deletions
diff --git a/vars/python2_host.vars b/vars/python2_host.vars
index 58efff95..99f79636 100644
--- a/vars/python2_host.vars
+++ b/vars/python2_host.vars
@@ -8,15 +8,4 @@ pkg_python2_host_fetch_git() {
ex_pkg_state_set "${PKG_NAME}" fetch -extract;
};
-pkg_python2_host_install_make_post() {
- if ex_rtl_fileop test "${PKG_DESTDIR}/bin/python2.7.wrapper"; then
- ex_rtl_fileop rm "${PKG_DESTDIR}/bin/python2.7.wrapper";
- fi;
- cat > "${PKG_DESTDIR}/bin/python2.7.wrapper" <<EOF
-#!/bin/sh
-env LD_LIBRARY_PATH="${PREFIX}/lib" "${PREFIX}/bin/python2.7" "\${@}";
-EOF
- chmod +x "${PKG_DESTDIR}/bin/python2.7.wrapper";
-};
-
# vim:filetype=sh