[oe-commits] [meta-openembedded] 04/49: xfsdump: fix do_configure failure and remove from blacklist

git at git.openembedded.org git at git.openembedded.org
Wed May 17 17:18:27 UTC 2017


This is an automated email from the git hooks/post-receive script.

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

commit e3ca0a35aadbc357f29764594cd79348fdf1dd54
Author: Qi.Chen at windriver.com <Qi.Chen at windriver.com>
AuthorDate: Thu May 4 18:05:31 2017 +0800

    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 at windriver.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb | 4 ++--
 1 file 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 8f942ba..ecc7468 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 = ""
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[gettext] = "--enable-gettext=yes,--enable-gettext=no,gettext"
 
+CFLAGS += "-D_FILE_OFFSET_BITS=64"
+
 EXTRA_OEMAKE += "'LIBTOOL=${HOST_SYS}-libtool' V=1"
 
 do_configure () {
@@ -34,5 +36,3 @@ do_install () {
     oe_runmake install
     oe_runmake install-dev
 }
-
-PNBLACKLIST[xfsdump] ?= "Depends on broken xfsprogs - the recipe will be removed on 2017-09-01 unless the issue is fixed"

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


More information about the Openembedded-commits mailing list