From: Oyvind Repvik Date: Tue, 2 Aug 2005 12:50:33 +0000 (+0000) Subject: Make it use , and actually create the dir before installing. (duh) X-Git-Tag: Release-2010-05/1~9453^2~4011^2~4^2^2 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fd744504b5c7cf3b0daa92b15cd6235e3a0b982;p=openembedded.git Make it use , and actually create the dir before installing. (duh) --- diff --git a/packages/bwmon/bwmon_1.3.bb b/packages/bwmon/bwmon_1.3.bb index 25271641e7..26c620e013 100644 --- a/packages/bwmon/bwmon_1.3.bb +++ b/packages/bwmon/bwmon_1.3.bb @@ -12,5 +12,6 @@ EXTRA_OEMAKE = "LDFLAGS=-L${STAGING_LIBDIR}" inherit autotools do_install () { - install ${S}/bwmon ${D}/usr/bin/bwmon + install -d ${D}${bindir} + install ${S}/bwmon ${D}${bindir}/bwmon }