From: kolla Date: Tue, 2 Aug 2005 00:01:11 +0000 (+0000) Subject: Fixed to use proper variables and install -d instead of mkdir X-Git-Tag: Release-2010-05/1~9453^2~4005^2~4^2~2 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1a70d53f72fbafaf9fec8069f347365d9e7cecb;p=openembedded.git Fixed to use proper variables and install -d instead of mkdir --- diff --git a/packages/ccxstream/ccxstream_1.0.15.bb b/packages/ccxstream/ccxstream_1.0.15.bb index 85d4a5ba86..2a19019277 100644 --- a/packages/ccxstream/ccxstream_1.0.15.bb +++ b/packages/ccxstream/ccxstream_1.0.15.bb @@ -11,8 +11,9 @@ inherit autotools do_install() { # add startup and sample config - mkdir -p ${D}${sysconfdir}/init.d ${D}/usr/bin + install -d ${D}${sysconfdir}/init.d + install -d ${D}${sbindir} install -m 0755 ${WORKDIR}/ccxstream.init ${D}${sysconfdir}/init.d/ccxstream install -m 0644 ${WORKDIR}/ccxstream.conf ${D}${sysconfdir}/ccxstream.conf - install -m 0755 ccxstream ${D}/usr/sbin/ccxstream || exit 1 + install -m 0755 ccxstream ${D}${sbindir}/ccxstream || exit 1 }