diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2005-08-02 12:50:33 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-02 12:50:33 +0000 |
commit | 5fd744504b5c7cf3b0daa92b15cd6235e3a0b982 (patch) | |
tree | 94e8bc8dce740a55a4e38e259e06d94272133bbe /packages/bwmon/bwmon_1.3.bb | |
parent | 3e19a1d3227ad6ea425e1ee3daf780f76fe6acd9 (diff) |
Make it use , and actually create the dir before installing. (duh)
Diffstat (limited to 'packages/bwmon/bwmon_1.3.bb')
-rw-r--r-- | packages/bwmon/bwmon_1.3.bb | 3 |
1 files changed, 2 insertions, 1 deletions
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 } |