From: Phil Blundell Date: Sun, 12 Sep 2004 12:13:52 +0000 (+0000) Subject: fix do_install problem X-Git-Tag: Release-2010-05/1~17240 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fdd251fb0e3e32d8ddce0df6f1111debe5803a26;p=openembedded.git fix do_install problem BKrev: 41443d80dOQjrEnetZFIZZKsYXF_lg --- diff --git a/minicom/minicom_2.1.oe b/minicom/minicom_2.1.oe index e69de29bb2..5892236714 100644 --- a/minicom/minicom_2.1.oe +++ b/minicom/minicom_2.1.oe @@ -0,0 +1,11 @@ +DEPENDS = "ncurses gettext-native" + +SRC_URI = "http://alioth.debian.org/download.php/123/minicom-${PV}.tar.gz \ + file://configure.patch;patch=1" + +inherit autotools + +do_install() { + for d in doc extras man intl lib src; do make -C $d DESTDIR=${D} install; done +} +