diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-11-07 16:08:07 +0800 |
|---|---|---|
| committer | Joe MacDonald <joe_macdonald@mentor.com> | 2014-11-10 15:11:34 -0500 |
| commit | c5398fc0fe246e4828c9e950f779f437266bfaa1 (patch) | |
| tree | 4af5f3e10301295d72a98bbf40bfc58eac256d46 | |
| parent | 671cbca4e7887e14c2b9fb2986cf5f65de7a1e35 (diff) | |
| download | meta-openembedded-c5398fc0fe246e4828c9e950f779f437266bfaa1.tar.gz | |
pimd: add do_install to pimd
The previous do_install is empty and do nothing.
Unset variables datadir and mandir, use pimd's default set.
So it could install doc files correctly.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
| -rw-r--r-- | meta-networking/recipes-support/pimd/pimd_2.1.8.bb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/pimd/pimd_2.1.8.bb b/meta-networking/recipes-support/pimd/pimd_2.1.8.bb index da097ce825..f0323618dd 100644 --- a/meta-networking/recipes-support/pimd/pimd_2.1.8.bb +++ b/meta-networking/recipes-support/pimd/pimd_2.1.8.bb | |||
| @@ -8,3 +8,10 @@ SRC_URI[md5sum] = "a12448bc7c9bfcebf51a13ebf1ffa962" | |||
| 8 | SRC_URI[sha256sum] = "01016940543a0a6131d4e6c91b595d47e187012c59a298eec14c3dbc38564b3a" | 8 | SRC_URI[sha256sum] = "01016940543a0a6131d4e6c91b595d47e187012c59a298eec14c3dbc38564b3a" |
| 9 | 9 | ||
| 10 | CFLAGS += "-I ${S}/include " | 10 | CFLAGS += "-I ${S}/include " |
| 11 | |||
| 12 | do_install() { | ||
| 13 | unset datadir | ||
| 14 | unset mandir | ||
| 15 | oe_runmake 'DESTDIR=${D}' install | ||
| 16 | } | ||
| 17 | |||
