mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
adblock: bugfix 2.1.5 (release 2)
* fix wget/uclient-switch
Signed-off-by: Dirk Brenken <dev@brenken.org>
(cherry picked from commit 12c345d803)
This commit is contained in:
committed by
Hannu Nyman
parent
31d89be9e6
commit
439538c4f0
@@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=adblock
|
||||
PKG_VERSION:=2.1.5
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
PKG_LICENSE:=GPL-3.0+
|
||||
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
|
||||
|
||||
|
||||
@@ -109,15 +109,15 @@ f_envcheck()
|
||||
|
||||
# check fetch utility
|
||||
#
|
||||
if [ -z "${adb_fetch}" ] || [ -z "${adb_fetchparm}" ] || [ ! -f "${adb_fetch}" ] || [ "$(readlink -fn "${adb_fetch}")" = "/bin/busybox" ]
|
||||
then
|
||||
f_log "error" "status ::: required download utility with ssl support not found, e.g. install full 'wget' package"
|
||||
fi
|
||||
if [ "${adb_fetch}" = "/usr/bin/wget" ] && [ "$(readlink -fn "${adb_fetch}")" = "/bin/uclient-fetch" ]
|
||||
if [ ! -f "${adb_fetch}" ] && [ "$(readlink -fn "/bin/wget")" = "/bin/uclient-fetch" ]
|
||||
then
|
||||
adb_fetch="/bin/uclient-fetch"
|
||||
adb_fetchparm="-q --timeout=5 --no-check-certificate -O"
|
||||
fi
|
||||
if [ -z "${adb_fetch}" ] || [ -z "${adb_fetchparm}" ] || [ ! -f "${adb_fetch}" ] || [ "$(readlink -fn "${adb_fetch}")" = "/bin/busybox" ]
|
||||
then
|
||||
f_log "error" "status ::: required download utility with ssl support not found, e.g. install full 'wget' package"
|
||||
fi
|
||||
|
||||
# create dns hideout directory
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user