sysvinit: mountpoint(1) is now provided by util-linux.

This commit is contained in:
Juan RP 2011-08-30 09:50:46 +02:00
parent 0e1e7175b2
commit ca45b8f1d8
1 changed files with 5 additions and 2 deletions

View File

@ -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
}