diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-01-25 20:42:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-27 13:46:31 +0000 |
commit | 5c2efbaad15a8430b4a02f3fcffd92578e1bb1a3 (patch) | |
tree | 436b0a0d1c1ce2c6da78ced3756cf9c0d0f74d04 /meta/recipes-devtools/automake | |
parent | cc490d76aba0a778409ca1a3d0e1f2c308684c9b (diff) | |
download | openembedded-core-5c2efbaad15a8430b4a02f3fcffd92578e1bb1a3.tar.gz openembedded-core-5c2efbaad15a8430b4a02f3fcffd92578e1bb1a3.tar.bz2 openembedded-core-5c2efbaad15a8430b4a02f3fcffd92578e1bb1a3.zip |
automake: use autotools_do_install
* autotools_do_install removes /info/dir when it exists, overwritting whole
do_install prevented that, use do_install_append instead.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/automake')
-rw-r--r-- | meta/recipes-devtools/automake/automake_1.12.6.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-devtools/automake/automake_1.12.6.bb b/meta/recipes-devtools/automake/automake_1.12.6.bb index 59bbdd8bfd..549051bc7b 100644 --- a/meta/recipes-devtools/automake/automake_1.12.6.bb +++ b/meta/recipes-devtools/automake/automake_1.12.6.bb @@ -31,8 +31,7 @@ SRC_URI[sha256sum] = "0cbe570db487908e70af7119da85ba04f7e28656b26f717df0265ae08d PR = "r0" -do_install () { - oe_runmake 'DESTDIR=${D}' install +do_install_append () { install -d ${D}${datadir} # Some distros have both /bin/perl and /usr/bin/perl, but we set perl location |