diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-17 12:30:57 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-17 12:31:38 +0000 |
commit | 629e0702161886f1fad9552ce451ed2b7dc77967 (patch) | |
tree | 19520526ed04cd91d2c65cb3b61f791864758b2a | |
parent | 95e27a0f604796b30d7e7e1d58d0925942cfefa9 (diff) | |
download | openembedded-core-629e0702161886f1fad9552ce451ed2b7dc77967.tar.gz openembedded-core-629e0702161886f1fad9552ce451ed2b7dc77967.tar.bz2 openembedded-core-629e0702161886f1fad9552ce451ed2b7dc77967.zip |
gnome-vfs: Force acl to be disabled since its not a dependency
Without this patch, if acl was build beforehand, the build could find
the library resulting in a non-deterministic build.
Sadly there is no --disable or --without option available so this
approach is the only mechanism available.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-vfs_2.24.4.bb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-vfs_2.24.4.bb b/meta/recipes-gnome/gnome/gnome-vfs_2.24.4.bb index 0c307daeae..3ca9c568ee 100644 --- a/meta/recipes-gnome/gnome/gnome-vfs_2.24.4.bb +++ b/meta/recipes-gnome/gnome/gnome-vfs_2.24.4.bb @@ -26,10 +26,13 @@ SRC_URI += "file://gconftool-lossage.patch;patch=1;pnum=1 \ SRC_URI[archive.md5sum] = "a05fab03eeef10a47dd156b758982f2e" SRC_URI[archive.sha256sum] = "62de64b5b804eb04104ff98fcd6a8b7276d510a49fbd9c0feb568f8996444faa" -EXTRA_OECONF = " \ - --disable-hal \ - --disable-openssl \ - --disable-samba \ +EXTRA_OECONF = " --disable-hal \ + --disable-openssl \ + --disable-samba \ + ac_cv_lib_acl_acl_get_file=no \ + ac_cv_lib_sec_acl=no \ + gvfs_cv_HAVE_SOLARIS_ACLS=no \ + gvfs_cv_HAVE_POSIX_ACLS=no \ " FILES_${PN} += " ${libdir}/vfs ${datadir}/dbus-1/services" |