summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-17 12:30:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-17 12:33:50 +0000
commitcaf671e081630c9b990f65f0eda39d4dd89e2674 (patch)
tree0b9768275e586a97a3b120b24e6bdb1f2391e672
parenta440c6371d2ab37715b21ccdfd40cc1b35b3f814 (diff)
downloadpoky-caf671e081630c9b990f65f0eda39d4dd89e2674.tar.gz
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. (From OE-Core rev: 629e0702161886f1fad9552ce451ed2b7dc77967) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-gnome/gnome/gnome-vfs_2.24.4.bb11
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 \
26SRC_URI[archive.md5sum] = "a05fab03eeef10a47dd156b758982f2e" 26SRC_URI[archive.md5sum] = "a05fab03eeef10a47dd156b758982f2e"
27SRC_URI[archive.sha256sum] = "62de64b5b804eb04104ff98fcd6a8b7276d510a49fbd9c0feb568f8996444faa" 27SRC_URI[archive.sha256sum] = "62de64b5b804eb04104ff98fcd6a8b7276d510a49fbd9c0feb568f8996444faa"
28 28
29EXTRA_OECONF = " \ 29EXTRA_OECONF = " --disable-hal \
30 --disable-hal \ 30 --disable-openssl \
31 --disable-openssl \ 31 --disable-samba \
32 --disable-samba \ 32 ac_cv_lib_acl_acl_get_file=no \
33 ac_cv_lib_sec_acl=no \
34 gvfs_cv_HAVE_SOLARIS_ACLS=no \
35 gvfs_cv_HAVE_POSIX_ACLS=no \
33 " 36 "
34 37
35FILES_${PN} += " ${libdir}/vfs ${datadir}/dbus-1/services" 38FILES_${PN} += " ${libdir}/vfs ${datadir}/dbus-1/services"