Browse Source

sysvinit: fixed to not build and install commands provided by util-linux

user/karasz/firmware
Christian Wiese 12 years ago
parent
commit
4e75ca1dd2
  1. 10
      base/sysvinit/sysvinit.conf

10
base/sysvinit/sysvinit.conf

@ -2,7 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../sysvinit/sysvinit.conf
# Copyright (C) 2008 - 2011 The OpenSDE Project
# Copyright (C) 2008 - 2012 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf
#
@ -27,3 +27,11 @@ var_append makeinstopt ' ' "ROOT=$root DISTRO=OpenSDE install"
hook_add postmake 5 '$CC -Wall -O2 $confdir/rc.c -o $root/sbin/rc'
hook_add postdoc 5 '[ -s $root/etc/inittab ] || cp -v $confdir/inittab.txt $root/etc/inittab'
# do not build and install commands provided by util-linux
if pkginstalled util-linux; then
disable_progs() {
sed -i -e '/utmpdump/d' Makefile
}
hook_add premake 9 'disable_progs'
fi

Loading…
Cancel
Save