mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 21:32:12 +02:00
This package changed from autoconf to cmake during the last recipe upgrade. This made the existing EXTRA_OECONF, which disabled wekbit support among other things, non-functional, which in turn, broke the build. This patch disables webkit in a CMAKE way by adding EXTRA_OECMAKE to the cmake class description, and setting it to "-DWEBKIT=no" in the libproxy recipe and also reproduces the EXTRA_OECONF settings. Signed-off-by: Jeff Dike <jdike@linux.intel.com>
12 lines
293 B
Plaintext
12 lines
293 B
Plaintext
DEPENDS += " cmake-native "
|
|
|
|
# We want the staging and installing functions from autotools
|
|
inherit autotools
|
|
|
|
cmake_do_configure() {
|
|
cmake . -DCMAKE_INSTALL_PREFIX:PATH=${prefix} -Wno-dev \
|
|
-DCMAKE_FIND_ROOT_PATH=${STAGING_DIR_HOST} ${EXTRA_OECMAKE}
|
|
}
|
|
|
|
EXPORT_FUNCTIONS do_configure
|