[systemd] udev: create compat /sbin/udev symlink.

This commit is contained in:
Juan RP 2012-05-27 01:02:00 +02:00
parent 5af7d966e2
commit 84e9b7b305
3 changed files with 7 additions and 5 deletions

View file

@ -1,14 +1,12 @@
# Template file for 'systemd-analyze'.
#
depends="python dbus-python systemd"
short_desc="${sourcepkg} - systemd analyze"
depends="python dbus-python systemd>=$version"
short_desc="A python utility to analyze some systemd results"
long_desc="${long_desc}
This package contains systemd-analyze, a python application to analyze
systemd."
do_install()
{
do_install() {
vmove usr/bin/systemd-analyze usr/bin
}

View file

@ -1,6 +1,7 @@
# Template file for 'systemd'
pkgname=systemd
version=183
revision=1
distfiles="http://www.freedesktop.org/software/$pkgname/$pkgname-$version.tar.xz"
build_style=gnu-configure
configure_args="--with-distro=other --with-rootprefix= --enable-plymouth

View file

@ -28,4 +28,7 @@ do_install() {
usr/share/initramfs-tools/scripts/init-bottom udev
vinstall ${FILESDIR}/udev.initramfs-inittop 755 \
usr/share/initramfs-tools/scripts/init-top udev
# Create /sbin/udev symlink just for compatibility.
vmkdir sbin
ln -sf /lib/systemd/systemd-udevd ${DESTDIR}/sbin/udevd
}