package/tvheadend: Fix inclusion of DVB frequency tables in bundled build

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Bernd Kuhls 2014-12-14 10:53:29 +01:00 committed by Peter Korsgaard
parent dd02aceb56
commit b7a7b4cb06

View File

@ -50,14 +50,20 @@ define TVHEADEND_CONFIGURE_CMDS
--arch="$(ARCH)" \ --arch="$(ARCH)" \
--cpu="$(BR2_GCC_TARGET_CPU)" \ --cpu="$(BR2_GCC_TARGET_CPU)" \
--python="$(HOST_DIR)/usr/bin/python" \ --python="$(HOST_DIR)/usr/bin/python" \
--disable-dvbscan \ --enable-dvbscan \
--enable-bundle \ --enable-bundle \
--disable-libffmpeg_static \ --disable-libffmpeg_static \
$(TVHEADEND_CONF_OPTS) \ $(TVHEADEND_CONF_OPTS) \
) )
endef endef
# The tvheadend build system expects the transponder data to be present inside
# its source tree. To prevent a downloaded initiated by the build system just
# copy the data files in the right place and add the corresponding stamp file.
define TVHEADEND_BUILD_CMDS define TVHEADEND_BUILD_CMDS
$(INSTALL) -d $(@D)/data/dvb-scan
cp -r $(TARGET_DIR)/usr/share/dvb/* $(@D)/data/dvb-scan/
touch $(@D)/data/dvb-scan/.stamp
$(MAKE) -C $(@D) $(MAKE) -C $(@D)
endef endef