[oe-commits] [meta-openembedded] 09/12: ntp: fix package split wrongly when enabled usrmerge

git at git.openembedded.org git at git.openembedded.org
Tue Sep 17 01:25:47 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 81a322ff2e32ee0a6f47a282e562494d60ac97ab
Author: Changqing Li <changqing.li at windriver.com>
AuthorDate: Mon Sep 16 17:17:15 2019 +0800

    ntp: fix package split wrongly when enabled usrmerge
    
    * when usrmerge is enabled, ${libdir} is /usr/lib, and
    ${systemd_unitdir} is /usr/lib/systemd, sine PACKAGE
    ntpdate is after ntp in variable PACKAGES, so file
    ${systemd_unitdir}/system/ntpdate.service will be populated
    into PACKAGE ntp, but actually we have add it into FILES_ntpdate
    
    when usrmerge is disabled, ${libdir} is empty, and usrmerge is
    enabled, files under ${libdir} have been covered by other FILES
    config, so fix by remove ${libdir}
    
    * libexecdir is empty, so remove it FILES_${PN}
    
    Signed-off-by: Changqing Li <changqing.li at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-networking/recipes-support/ntp/ntp_4.2.8p13.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-networking/recipes-support/ntp/ntp_4.2.8p13.bb b/meta-networking/recipes-support/ntp/ntp_4.2.8p13.bb
index dc18a60..9b327ba 100644
--- a/meta-networking/recipes-support/ntp/ntp_4.2.8p13.bb
+++ b/meta-networking/recipes-support/ntp/ntp_4.2.8p13.bb
@@ -136,9 +136,9 @@ RCONFLICTS_ntpdate += "ntpdate-systemd"
 
 RSUGGESTS_${PN} = "iana-etc"
 
-FILES_${PN} = "${sbindir}/ntpd.ntp ${sysconfdir}/ntp.conf ${sysconfdir}/init.d/ntpd ${libdir} \
+FILES_${PN} = "${sbindir}/ntpd.ntp ${sysconfdir}/ntp.conf ${sysconfdir}/init.d/ntpd \
     ${NTP_USER_HOME} \
-    ${systemd_unitdir}/ntp-units.d/60-ntpd.list ${libexecdir}\
+    ${systemd_unitdir}/ntp-units.d/60-ntpd.list \
 "
 FILES_${PN}-tickadj = "${sbindir}/tickadj"
 FILES_${PN}-utils = "${sbindir} ${datadir}/ntp/lib"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list