[oe-commits] [meta-openembedded] 11/46: php: fix aclocal-copy aclocal-copy

git at git.openembedded.org git at git.openembedded.org
Tue Aug 16 15:37:20 UTC 2016


martin_jansa pushed a commit to branch master-next
in repository meta-openembedded.

commit e8aeb38dda653537eeb7d86d0d1e19c75fb04791
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Sun Aug 14 07:21:07 2016 -0700

    php: fix aclocal-copy aclocal-copy
    
    Fixed do_install error:
    | DEBUG: Executing shell function do_install
    | cat: aclocal-copy/libtool.m4: No such file or directory
    | cat: aclocal-copy/lt~obsolete.m4: No such file or directory
    | cat: aclocal-copy/ltoptions.m4: No such file or directory
    | cat: aclocal-copy/ltsugar.m4: No such file or directory
    | cat: aclocal-copy/ltversion.m4: No such file or directory
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 meta-oe/recipes-devtools/php/php.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-devtools/php/php.inc b/meta-oe/recipes-devtools/php/php.inc
index ee7a143..988ae48 100644
--- a/meta-oe/recipes-devtools/php/php.inc
+++ b/meta-oe/recipes-devtools/php/php.inc
@@ -120,8 +120,8 @@ do_install_append_class-native() {
 }
 
 do_install_prepend() {
-    cat aclocal-copy/libtool.m4 aclocal-copy/lt~obsolete.m4 aclocal-copy/ltoptions.m4 \
-        aclocal-copy/ltsugar.m4 aclocal-copy/ltversion.m4 > ${S}/build/libtool.m4
+    cat ${ACLOCALDIR}/libtool.m4 ${ACLOCALDIR}/lt~obsolete.m4 ${ACLOCALDIR}/ltoptions.m4 \
+        ${ACLOCALDIR}/ltsugar.m4 ${ACLOCALDIR}/ltversion.m4 > ${S}/build/libtool.m4
 }
 
 do_install_prepend_class-target() {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list