Integrate (badly) the new muxlist config file fetching into the build system.

This commit is contained in:
Adam Sutton 2012-08-03 13:27:54 +01:00
parent 2c43d0efb7
commit 621441760d
3 changed files with 14 additions and 0 deletions

1
.gitignore vendored
View file

@ -4,3 +4,4 @@ config.default
.cproject
.project
.settings
data/dvb-scan

12
configure vendored
View file

@ -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
#

View file

@ -25,6 +25,7 @@ CONFIG_LIST="
linuxdvb
v4l
execinfo
dvbscan
"
die() {