From 5957cdf811abd264b62300fab3e9c98ca5a835d7 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 10 Feb 2011 16:28:46 +0100 Subject: [PATCH] xbps-src::python-module: remove wrong sed subst. --- xbps-src/helpers/python-module.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/xbps-src/helpers/python-module.sh b/xbps-src/helpers/python-module.sh index f546463391c..d3f5752e73f 100644 --- a/xbps-src/helpers/python-module.sh +++ b/xbps-src/helpers/python-module.sh @@ -4,7 +4,7 @@ do_build() { - python setup.py build ${make_build_args} || return 1 + python setup.py build ${make_build_args} } do_install() @@ -12,8 +12,5 @@ do_install() if [ -z "$make_install_args" ]; then make_install_args="--prefix=/usr --root=$DESTDIR" fi - - cd ${wrksrc} || return 1 - sed -i 's|man/man1|share/man/man1|g' setup.py || return 1 - python setup.py install ${make_install_args} || return 1 + python setup.py install ${make_install_args} }