mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
Handle LDFLAGS properly in the Makefile to remove warning: QA Issue: No GNU_HASH in the elf binary (From OE-Core rev: a24a5e5c9ede4275f7188935a9410b84d406ed19) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Muhammad Shakeel <muhammad_shakeel@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
941 B
BlitzBasic
29 lines
941 B
BlitzBasic
SUMMARY = "ACPI data gathering library."
|
|
DESCRIPTION = "General purpose shared library for programs gathering ACPI data on Linux. \
|
|
Thermal zones, battery infomration, fan information and AC states are implemented."
|
|
SECTION = "base"
|
|
HOMEPAGE = "http://www.ngolde.de/libacpi.html"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=fec17f82f16630adf2dfb7d2a46f21c5"
|
|
PR = "r6"
|
|
|
|
SRC_URI = "http://www.ngolde.de/download/libacpi-${PV}.tar.gz \
|
|
file://makefile-fix.patch \
|
|
file://libacpi_fix_for_x32.patch \
|
|
file://use_correct_strip_in_cross_environment.patch \
|
|
file://ldflags.patch "
|
|
|
|
SRC_URI[md5sum] = "05b53dd7bead66dda35fec502b91066c"
|
|
SRC_URI[sha256sum] = "13086e31d428b9c125954d48ac497b754bbbce2ef34ea29ecd903e82e25bad29"
|
|
|
|
inherit lib_package
|
|
|
|
COMPATIBLE_HOST = '(x86_64|i.86).*-(linux|freebsd.*)'
|
|
|
|
CFLAGS += "-fPIC"
|
|
EXTRA_OEMAKE += 'STRIP="echo"'
|
|
|
|
do_install() {
|
|
oe_runmake install DESTDIR=${D} PREFIX=${exec_prefix}
|
|
}
|