Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
getmuxlist: use own dtv-scan-tables repository (quick fixes, merges)
  • Loading branch information
perexg committed Jan 27, 2016
1 parent 6505a34 commit 90f66ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -705,7 +705,7 @@ ${BUILDDIR}/hdhomerun/libhdhomerun/libhdhomerun.a: Makefile.hdhomerun

# linuxdvb git tree
$(ROOTDIR)/data/dvb-scan/.stamp:
@echo "Receiving data/dvb-scan/dvb-t from http://linuxtv.org/git/dtv-scan-tables.git"
@echo "Receiving data/dvb-scan/dvb-t from https://github.com/tvheadend/dtv-scan-tables.git#tvheadend"
@rm -rf $(ROOTDIR)/data/dvb-scan/*
@$(ROOTDIR)/support/getmuxlist $(ROOTDIR)/data/dvb-scan
@touch $@
Expand Down
5 changes: 3 additions & 2 deletions support/getmuxlist
Expand Up @@ -17,8 +17,9 @@ if [ -d "${DIR}/.git" ]; then
cd "${LAST}" || exit 1
# Fetch
elif [ ! -d "${DIR}" ]; then
URL=http://linuxtv.org/git/dtv-scan-tables.git
git clone $URL "${DIR}" > /dev/null 2>&1 || exit 1
URL=https://github.com/tvheadend/dtv-scan-tables.git
BRANCH=tvheadend
git clone -b $BRANCH $URL "${DIR}" > /dev/null 2>&1 || exit 1
fi

# Note: will not update existing set (if not .git)
Expand Down

0 comments on commit 90f66ef

Please sign in to comment.