From ca45b8f1d807683b2369b5c0582257ed33d2931d Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 30 Aug 2011 09:50:46 +0200 Subject: [PATCH] sysvinit: mountpoint(1) is now provided by util-linux. --- srcpkgs/sysvinit/template | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sysvinit/template b/srcpkgs/sysvinit/template index 59f46fa4fc3..b2c47a735c3 100644 --- a/srcpkgs/sysvinit/template +++ b/srcpkgs/sysvinit/template @@ -1,7 +1,7 @@ # Template file for 'sysvinit' pkgname=sysvinit version=2.88 -revision=1 +revision=2 wrksrc="${pkgname}-${version}dsf" distfiles="http://download.savannah.gnu.org/releases/$pkgname/${pkgname}-${version}dsf.tar.bz2" build_style=gnu_makefile @@ -22,7 +22,10 @@ post_install() { # Remove unneeded stuff rm -rf ${DESTDIR}/usr/include - # wall(1) comes from util-linux-ng. + # wall(1) comes from util-linux. rm -f ${DESTDIR}/usr/bin/wall rm -f ${DESTDIR}/usr/share/man/man1/wall.1 + # mountpoint(1) comes from util-linux. + rm -f ${DESTDIR}/bin/mountpoint + rm -f ${DESTDIR}/usr/share/man/man1/mountpoint.1 }