mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
3e3f774b8d
When building docs in systemtap, docproc is used to generate the tapset documentation, but it gets built for the target, while it needs to be build for the host instead. This change causes that to happen. Fixes [YOCTO #2193]. (From OE-Core rev: 6ef7112e339bb5c03dee862bc56c10fdf677be78) Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
916 B
BlitzBasic
28 lines
916 B
BlitzBasic
DESCRIPTION = "SystemTap - script-directed dynamic tracing and performance analysis tool for Linux"
|
|
|
|
require systemtap_git.inc
|
|
|
|
DEPENDS = "elfutils sqlite3 systemtap-native"
|
|
DEPENDS_virtclass-native = "elfutils-native sqlite3-native gettext-native"
|
|
DEPENDS_virtclass-nativesdk = "elfutils-nativesdk sqlite3-nativesdk gettext-nativesdk"
|
|
|
|
PR = "r3"
|
|
|
|
export CC_FOR_BUILD = "${BUILD_CC}"
|
|
export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}"
|
|
export LDFLAGS_FOR_BUILD = "${BUILD_LDFLAGS}"
|
|
|
|
EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \
|
|
ac_cv_file__usr_include_nss=no \
|
|
ac_cv_file__usr_include_nss3=no \
|
|
ac_cv_file__usr_include_nspr=no \
|
|
ac_cv_file__usr_include_nspr4=no \
|
|
ac_cv_file__usr_include_avahi_client=no \
|
|
ac_cv_file__usr_include_avahi_common=no "
|
|
|
|
inherit autotools gettext
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
FILES_${PN}-dbg += "${libexecdir}/systemtap/.debug"
|