Integrate (badly) the new muxlist config file fetching into the build system.
This commit is contained in:
parent
2c43d0efb7
commit
621441760d
3 changed files with 14 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@ config.default
|
|||
.cproject
|
||||
.project
|
||||
.settings
|
||||
data/dvb-scan
|
||||
|
|
12
configure
vendored
12
configure
vendored
|
@ -44,6 +44,7 @@ enable cwc
|
|||
enable avahi
|
||||
enable linuxdvb
|
||||
enable v4l
|
||||
enable dvbscan
|
||||
|
||||
for opt do
|
||||
optval="${opt#*=}"
|
||||
|
@ -185,6 +186,17 @@ else
|
|||
die
|
||||
fi
|
||||
|
||||
#
|
||||
# DVB-scan files
|
||||
#
|
||||
if enabled dvbscan; then
|
||||
if [ ! -d data/dvb-scan ]; then
|
||||
echo -n "Fetching dvb-scan files... "
|
||||
${TOPDIR}/support/getmuxlist &> /dev/null
|
||||
echo "done"
|
||||
fi
|
||||
fi
|
||||
|
||||
#
|
||||
# Finalize
|
||||
#
|
||||
|
|
|
@ -25,6 +25,7 @@ CONFIG_LIST="
|
|||
linuxdvb
|
||||
v4l
|
||||
execinfo
|
||||
dvbscan
|
||||
"
|
||||
|
||||
die() {
|
||||
|
|
Loading…
Add table
Reference in a new issue