From: Chris Larson Date: Fri, 2 Jul 2004 23:18:15 +0000 (+0000) Subject: Put update-rc.d in ${sbindir} rather than /sbin. X-Git-Tag: Release-2010-05/1~18408 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e1a6faa87a61f030e124691c8872b5af18ac509;p=openembedded.git Put update-rc.d in ${sbindir} rather than /sbin. BKrev: 40e5ed37DE_1SvT5lrhiIjSit0sE-A --- diff --git a/update-rc.d/update-rc.d_0.3.oe b/update-rc.d/update-rc.d_0.3.oe index e69de29bb2..0df1c78ed1 100644 --- a/update-rc.d/update-rc.d_0.3.oe +++ b/update-rc.d/update-rc.d_0.3.oe @@ -0,0 +1,16 @@ +SECTION = "base" +PRIORITY = "standard" +DESCRIPTION = "Manage symlinks in /etc/rcN.d" +MAINTAINER = "Phil Blundell " +S = ${WORKDIR}/update-rc.d + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=apps/update-rc.d;tag=r0_3" + +do_compile() { +} + +do_install() { + install -d ${D}/${sbindir} + install -m 0755 ${S}/update-rc.d ${D}/${sbindir}/update-rc.d +} +