diff options
-rw-r--r-- | meta-networking/recipes-connectivity/samba/samba_4.7.0.bb | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/meta-networking/recipes-connectivity/samba/samba_4.7.0.bb b/meta-networking/recipes-connectivity/samba/samba_4.7.0.bb index 854cb8af5..27918d2a0 100644 --- a/meta-networking/recipes-connectivity/samba/samba_4.7.0.bb +++ b/meta-networking/recipes-connectivity/samba/samba_4.7.0.bb | |||
@@ -198,7 +198,7 @@ PACKAGES =+ "${PN}-python ${PN}-pidl \ | |||
198 | ${PN}-dsdb-modules ${PN}-testsuite registry-tools \ | 198 | ${PN}-dsdb-modules ${PN}-testsuite registry-tools \ |
199 | winbind \ | 199 | winbind \ |
200 | ${PN}-common ${PN}-base ${PN}-ad-dc ${PN}-ctdb-tests \ | 200 | ${PN}-common ${PN}-base ${PN}-ad-dc ${PN}-ctdb-tests \ |
201 | smbclient" | 201 | smbclient ${PN}-client ${PN}-server ${PN}-test" |
202 | 202 | ||
203 | python samba_populate_packages() { | 203 | python samba_populate_packages() { |
204 | def module_hook(file, pkg, pattern, format, basename): | 204 | def module_hook(file, pkg, pattern, format, basename): |
@@ -295,3 +295,27 @@ FILES_smbclient = "${bindir}/cifsdd \ | |||
295 | 295 | ||
296 | RDEPENDS_${PN}-pidl_append = " perl" | 296 | RDEPENDS_${PN}-pidl_append = " perl" |
297 | FILES_${PN}-pidl = "${bindir}/pidl ${datadir}/perl5/Parse" | 297 | FILES_${PN}-pidl = "${bindir}/pidl ${datadir}/perl5/Parse" |
298 | |||
299 | RDEPENDS_${PN}-client = "\ | ||
300 | smbclient \ | ||
301 | winbind \ | ||
302 | registry-tools \ | ||
303 | ${PN}-pidl \ | ||
304 | " | ||
305 | |||
306 | ALLOW_EMPTY_${PN}-client = "1" | ||
307 | |||
308 | RDEPENDS_${PN}-server = "\ | ||
309 | ${PN} \ | ||
310 | winbind \ | ||
311 | registry-tools \ | ||
312 | " | ||
313 | |||
314 | ALLOW_EMPTY_${PN}-server = "1" | ||
315 | |||
316 | RDEPENDS_${PN}-test = "\ | ||
317 | ${PN}-ctdb-tests \ | ||
318 | ${PN}-testsuite \ | ||
319 | " | ||
320 | |||
321 | ALLOW_EMPTY_${PN}-test = "1" | ||