From: Sagaert Johan Date: Sun, 15 Jun 2014 13:05:16 +0000 (+0200) Subject: portmap: prevent selecting the package when rpcbind is selected X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c314a37eb39ad742b7fac56acc53452bb1ae83d;p=buildroot.git portmap: prevent selecting the package when rpcbind is selected portmap and rpcbind must not be selected at the same time. Users should use rpcbind in favor of the deprecated portmap. Signed-off-by: Sagaert Johan Signed-off-by: Thomas Petazzoni --- diff --git a/package/portmap/Config.in b/package/portmap/Config.in index fa7eaf1e0e..d960690d7b 100644 --- a/package/portmap/Config.in +++ b/package/portmap/Config.in @@ -1,6 +1,10 @@ config BR2_PACKAGE_PORTMAP bool "portmap" depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC + # portmap and rpcbind provide the same feature, so they are + # mutually exclusive. rpcbind is the newer, preferred + # implementation. + depends on !BR2_PACKAGE_RPCBIND help The standard portmapper for RPC services.