From a1a70d53f72fbafaf9fec8069f347365d9e7cecb Mon Sep 17 00:00:00 2001 From: kolla Date: Tue, 2 Aug 2005 00:01:11 +0000 Subject: Fixed to use proper variables and install -d instead of mkdir --- packages/ccxstream/ccxstream_1.0.15.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'packages/ccxstream') 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 } -- cgit v1.2.3