diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-08-13 14:44:45 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-13 14:44:45 +0000 |
commit | b87cac1cf23eab6ad1e8a7498702f408263c2ae4 (patch) | |
tree | ccd8576081ff0f635ccf7b4018fe77840641aee1 /packages/e17/examine_20050810.bb | |
parent | c43bdb630a5cb6a6cce9a9fb49abcf679c625d58 (diff) |
E17 files
- remove unnecessary explicit binconfig settings
- use ${sysconfdir} and ${sbindir} instead of hardcoding paths
Diffstat (limited to 'packages/e17/examine_20050810.bb')
-rw-r--r-- | packages/e17/examine_20050810.bb | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/packages/e17/examine_20050810.bb b/packages/e17/examine_20050810.bb index 07ed88c0f5..6e79fd946f 100644 --- a/packages/e17/examine_20050810.bb +++ b/packages/e17/examine_20050810.bb @@ -11,17 +11,11 @@ S = "${WORKDIR}/examine" EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR}/edje_cc" +inherit autotools pkgconfig binconfig + do_prepsources () { make clean distclean || true } addtask prepsources after do_fetch before do_unpack -export EET_CONFIG = "${STAGING_BINDIR}/eet-config" -export EVAS_CONFIG = "${STAGING_BINDIR}/evas-config" -export ECORE_CONFIG = "${STAGING_BINDIR}/ecore-config" -export EMBRYO_CONFIG = "${STAGING_BINDIR}/embryo-config" -export EDJE_CONFIG = "${STAGING_BINDIR}/edje-config" - -FILES_${PN} = "${bindir}/* ${libdir}/* ${datadir} /etc/* /usr/sbin/*" - -inherit autotools pkgconfig binconfig +FILES_${PN} = "${bindir}/* ${libdir}/* ${datadir} ${sysconfdir} ${sbindir}" |