summaryrefslogtreecommitdiffstats
path: root/meta-networking
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@eng.windriver.com>2023-09-06 10:23:54 +0800
committerKhem Raj <raj.khem@gmail.com>2023-09-07 08:22:43 -0700
commit241dbe5428477bd9952c2f55238f30712ab9d73a (patch)
tree0cf0b1380b8eb5379a6ee5f581efc1d1a88e50ab /meta-networking
parent9b092d6b3e777b9466b43dcb13839ec9663cd0b7 (diff)
downloadmeta-openembedded-241dbe5428477bd9952c2f55238f30712ab9d73a.tar.gz
ntp: add missing runtime dependencies
Some perl modules are required by ntptrace: $ ntptrace Can't locate lib.pm in @INC (you may need to install the lib module) (@INC contains: /usr/lib/perl5/site_perl/5.36.0/x86_64-linux /usr/lib/perl5/site_perl/5.36.0 /usr/lib/perl5/vendor_perl/5.36.0/x86_64-linux /usr/lib/perl5/vendor_perl/5.36.0 /usr/lib/perl5/5.36.0/x86_64-linux /usr/lib/perl5/5.36.0) at /usr/sbin/ntptrace line 10. BEGIN failed--compilation aborted at /usr/sbin/ntptrace line 10. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r--meta-networking/recipes-support/ntp/ntp_4.2.8p17.bb9
1 files changed, 8 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/ntp/ntp_4.2.8p17.bb b/meta-networking/recipes-support/ntp/ntp_4.2.8p17.bb
index e80ea4c149..4ed58cd6a4 100644
--- a/meta-networking/recipes-support/ntp/ntp_4.2.8p17.bb
+++ b/meta-networking/recipes-support/ntp/ntp_4.2.8p17.bb
@@ -136,7 +136,14 @@ RPROVIDES:${PN}-utils = "${PN}-bin"
136RREPLACES:${PN}-utils = "${PN}-bin" 136RREPLACES:${PN}-utils = "${PN}-bin"
137RCONFLICTS:${PN}-utils = "${PN}-bin" 137RCONFLICTS:${PN}-utils = "${PN}-bin"
138# ntpdc and ntpq were split out of ntp-utils 138# ntpdc and ntpq were split out of ntp-utils
139RDEPENDS:${PN}-utils = "ntpdc ntpq" 139RDEPENDS:${PN}-utils = "ntpdc ntpq \
140 perl-module-lib \
141 perl-module-exporter \
142 perl-module-carp \
143 perl-module-version \
144 perl-module-socket \
145 perl-module-getopt-long \
146 "
140 147
141SYSTEMD_PACKAGES = "${PN} sntp" 148SYSTEMD_PACKAGES = "${PN} sntp"
142SYSTEMD_SERVICE:${PN} = "ntpd.service" 149SYSTEMD_SERVICE:${PN} = "ntpd.service"