diff options
author | Nisha Parrakat <nishaparrakat@gmail.com> | 2021-05-26 20:03:17 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-27 13:21:38 +0100 |
commit | 134aad7c6a30a27bbee6019763d5e42c2b71140c (patch) | |
tree | f05b1bc47e963432cc7a9d8622602a47a9bc0108 | |
parent | 47e98cbca0e55838aa7d806a979d1bbf7b974e26 (diff) | |
download | poky-134aad7c6a30a27bbee6019763d5e42c2b71140c.tar.gz |
squashfs-tools: package squashfs-fs.h
Needed to build the latest debian version
of android-tools
Fixes below error while building android-tools libext4_utils.mk
| squashfs_utils/squashfs_utils.c:27:10: fatal error: 'squashfs_fs.h' file not found
| #include "squashfs_fs.h"
| ^~~~~~~~~~~~~~~
| 1 error generated.
| core2-64-poky-linux/android-tools/10.0.0.r36-r0/git/system/extras/debian/libext4_utils.mk:29: recipe for target 'build' failed
| make: *** [build] Error 1
(From OE-Core rev: 543c3042eb5c79c6d506262c5d5d36884358d0be)
Signed-off-by: Nisha Parrakat <Nisha.Parrakat@kpit.com>
Signed-off-by: Nisha Parrakat <nishaparrakat@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb index 2b1409d78d..137e5097fa 100644 --- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb +++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb | |||
@@ -32,7 +32,9 @@ do_compile() { | |||
32 | } | 32 | } |
33 | 33 | ||
34 | do_install() { | 34 | do_install() { |
35 | install -d "${D}${includedir}" | ||
35 | oe_runmake install INSTALL_DIR=${D}${sbindir} | 36 | oe_runmake install INSTALL_DIR=${D}${sbindir} |
37 | install -m 0644 "${S}"/squashfs_fs.h "${D}${includedir}" | ||
36 | } | 38 | } |
37 | 39 | ||
38 | ARM_INSTRUCTION_SET_armv4 = "arm" | 40 | ARM_INSTRUCTION_SET_armv4 = "arm" |