diff options
author | Phil Blundell <philb@gnu.org> | 2004-09-12 12:13:52 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-09-12 12:13:52 +0000 |
commit | fdd251fb0e3e32d8ddce0df6f1111debe5803a26 (patch) | |
tree | a82e4f55030a38905f0f1f9b87b2d792d0137ce7 /minicom | |
parent | b431b901fc6b88decc2e76e7f2c7cea7f46af4dc (diff) |
fix do_install problem
BKrev: 41443d80dOQjrEnetZFIZZKsYXF_lg
Diffstat (limited to 'minicom')
-rw-r--r-- | minicom/minicom_2.1.oe | 11 |
1 files changed, 11 insertions, 0 deletions
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 +} + |