From: Sebastian Spaeth Date: Fri, 27 Nov 2009 09:55:03 +0000 (+0100) Subject: bootchart-lite: Use mkdir rather than install in postinst. X-Git-Tag: Release-2010-05/1~1594 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b7e82c4c29e50776afb95b821a80a6c01fc19f5;p=openembedded.git bootchart-lite: Use mkdir rather than install in postinst. * install is part of coreutils which might not be installed. * As this is a -lite image it might not make sense to pull in coreutils just to create a dir. Signed-off-by: Sebastian Spaeth --- diff --git a/recipes/bootchart-lite/bootchart-lite_svn.bb b/recipes/bootchart-lite/bootchart-lite_svn.bb index 2220560070..1368c92105 100644 --- a/recipes/bootchart-lite/bootchart-lite_svn.bb +++ b/recipes/bootchart-lite/bootchart-lite_svn.bb @@ -12,7 +12,7 @@ S = "${WORKDIR}/trunk" inherit autotools pkg_postinst_${PN} () { - install -d /etc/bootchart-lite + mkdir /etc/bootchart-lite } pkg_postrm_${PN} () {