diff options
author | Qi.Chen@windriver.com <Qi.Chen@windriver.com> | 2017-05-04 18:05:31 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-05-23 15:49:34 +0200 |
commit | 573fd1849fa3cd74f54d55652fd0e2b28876c1b7 (patch) | |
tree | b89b2997d70a1db25a901cab11442ab8f1043836 /meta-filesystems | |
parent | 440aa5bdc37593d0ee076bc0663d672e848026cc (diff) | |
download | meta-openembedded-573fd1849fa3cd74f54d55652fd0e2b28876c1b7.tar.gz |
xfsdump: fix do_configure failure and remove from blacklist
Add '-D_FILE_OFFSET_BITS=64' to CFLAGS to fix the following do_configure
error.
FATAL ERROR: cannot find a valid <xfs/xfs.h> header file.
Although -D_FILE_OFFSET_BITS=64 has already been defined in
include/builddefs.in, it only affects the compile process, leaving configure
process unaware of this value.
Remove from blacklist as the configure failure has been fixed by this patch.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-filesystems')
-rw-r--r-- | meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb b/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb index 8f942ba7ce..ecc746829f 100644 --- a/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb +++ b/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb | |||
@@ -22,6 +22,8 @@ PARALLEL_MAKE = "" | |||
22 | PACKAGECONFIG ??= "" | 22 | PACKAGECONFIG ??= "" |
23 | PACKAGECONFIG[gettext] = "--enable-gettext=yes,--enable-gettext=no,gettext" | 23 | PACKAGECONFIG[gettext] = "--enable-gettext=yes,--enable-gettext=no,gettext" |
24 | 24 | ||
25 | CFLAGS += "-D_FILE_OFFSET_BITS=64" | ||
26 | |||
25 | EXTRA_OEMAKE += "'LIBTOOL=${HOST_SYS}-libtool' V=1" | 27 | EXTRA_OEMAKE += "'LIBTOOL=${HOST_SYS}-libtool' V=1" |
26 | 28 | ||
27 | do_configure () { | 29 | do_configure () { |
@@ -34,5 +36,3 @@ do_install () { | |||
34 | oe_runmake install | 36 | oe_runmake install |
35 | oe_runmake install-dev | 37 | oe_runmake install-dev |
36 | } | 38 | } |
37 | |||
38 | PNBLACKLIST[xfsdump] ?= "Depends on broken xfsprogs - the recipe will be removed on 2017-09-01 unless the issue is fixed" | ||