diff options
author | Constantin Musca <constantinx.musca@intel.com> | 2012-12-21 15:52:25 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-01-04 22:01:21 -0800 |
commit | 0da1e769a57c96299dce93b34ec67c2809da8998 (patch) | |
tree | 0f48a1058e670d7e262898d82b2cfdfcfee7cab5 /meta | |
parent | e5890474ea6ae44f16e66795aa8e3274ec576aa7 (diff) | |
download | openembedded-core-0da1e769a57c96299dce93b34ec67c2809da8998.tar.gz openembedded-core-0da1e769a57c96299dce93b34ec67c2809da8998.tar.bz2 openembedded-core-0da1e769a57c96299dce93b34ec67c2809da8998.zip |
sysstat: fix sa_lib_dir
Fix the following warning:
WARNING: QA Issue: sysstat: Files/directories were installed but not shipped
/usr/lib
/usr/lib/sa
/usr/lib/sa/sadc
/usr/lib/sa/sa2
/usr/lib/sa/sa1
/usr/lib/sa/.debug
/usr/lib/sa/.debug/sadc
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/sysstat/sysstat.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc index 287bb54db9..863f246249 100644 --- a/meta/recipes-extended/sysstat/sysstat.inc +++ b/meta/recipes-extended/sysstat/sysstat.inc @@ -3,7 +3,7 @@ DESCRIPTION = "The sysstat utilities are a collection of performance monitoring HOMEPAGE = "http://sebastien.godard.pagesperso-orange.fr/" LICENSE = "GPLv2+" SECTION = "console/utils" -INC_PR = "r1" +INC_PR = "r2" SRC_URI = "http://pagesperso-orange.fr/sebastien.godard/sysstat-${PV}.tar.gz \ file://99_sysstat" @@ -13,6 +13,10 @@ inherit autotools gettext EXTRA_OECONF += "--disable-sensors" EXTRA_OEMAKE += 'LFLAGS=""' +do_configure_prepend() { + export sa_lib_dir=${libdir}/sa +} + do_install() { autotools_do_install |