b49e3da1ab
udpcast unconditionally build manpages which will raise the following
build failure without pod2man since at least bump to version 20200328 in
commit 4fb91d8b9d
:
sh: line 1: pod2man: command not found
To fix this issue, rework how udpcast is built and installed to always
build and install the sender or the receiver and never build the
manpages. As a side effect, this will also avoid to install the unneeded
rateGovernor.h
Fixes:
- http://autobuild.buildroot.org/results/ce602a09357e950d79794391cd4a852d565914f1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
30 lines
646 B
Plaintext
30 lines
646 B
Plaintext
comment "udpcast needs a toolchain w/ threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_UDPCAST
|
|
bool "udpcast"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_UDPCAST_SENDER \
|
|
if !BR2_PACKAGE_UDPCAST_RECEIVER
|
|
help
|
|
A multicast protocol implementation which happens to
|
|
be very handy for imaging drives over the network.
|
|
|
|
http://www.udpcast.linux.lu/
|
|
|
|
if BR2_PACKAGE_UDPCAST
|
|
|
|
config BR2_PACKAGE_UDPCAST_SENDER
|
|
bool "sender"
|
|
help
|
|
The udpcast transmitter.
|
|
|
|
config BR2_PACKAGE_UDPCAST_RECEIVER
|
|
bool "receiver"
|
|
help
|
|
The udpcast receiver.
|
|
|
|
endif
|